Skip to content

Commit

Permalink
Merge pull request #192 from gibsonliketheguitar/fix-link-wrapper
Browse files Browse the repository at this point in the history
fix(ui): adjust link class for better mobile support
  • Loading branch information
Innders authored Jul 16, 2024
2 parents 5a7bb57 + 129041a commit 242b004
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion website/src/pages/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand All @@ -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;
Expand Down

0 comments on commit 242b004

Please sign in to comment.