From 0887727a1b76634a251c77ed055ecf7dc1b6d0f2 Mon Sep 17 00:00:00 2001 From: Gibson Han <66423127+gibsonliketheguitar@users.noreply.github.com> Date: Wed, 26 Jun 2024 16:30:34 -0700 Subject: [PATCH] adjust link class for better mobile support --- website/src/pages/styles.module.scss | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/website/src/pages/styles.module.scss b/website/src/pages/styles.module.scss index f9c19423..ca279edd 100644 --- a/website/src/pages/styles.module.scss +++ b/website/src/pages/styles.module.scss @@ -69,7 +69,7 @@ html[data-theme="dark"] .title { gap: 32px; flex: 1; padding: 64px 0; - max-height: 50vh; + min-height: 50vh; background-color: var(--ifm-background-surface-color); } @@ -83,6 +83,12 @@ html[data-theme="dark"] .title { gap: 32px; } +@media screen and (max-width: 475) { + .Links { + flex-direction: column; + } +} + .link { display: flex; flex-direction: column;