Skip to content

Commit

Permalink
Reduce whitespace on mobile viewports (#1770)
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Marbach <[email protected]>
  • Loading branch information
Johennes authored Mar 27, 2024
1 parent eb7ac35 commit 8ff3623
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 4 deletions.
24 changes: 20 additions & 4 deletions assets/scss/_styles_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,13 @@ Custom SCSS for the Matrix spec
.navbar-brand {
font-size: 1.1rem;

/* Allow the text to wrap if it is wider than the viewport */
text-align: center;
white-space: normal;

.navbar-version {
color: $secondary;
}

}

.nav-link {
Expand Down Expand Up @@ -115,7 +118,7 @@ Custom SCSS for the Matrix spec
}
}

@media (min-width: 768px) {
@include media-breakpoint-up(md) {
@supports (position: sticky) {
.td-sidebar-nav {
/* This overrides calc(100vh - 10rem);, which gives us a blank space at the bottom of the sidebar */
Expand Down Expand Up @@ -172,6 +175,13 @@ footer {

}

/* Remove some padding before the main content, when the sidebar is disabled */
.td-main main {
@include media-breakpoint-down(md) {
padding-top: 0;
}
}

/* Adjust the scroll margin for everything in the main content, so that
* it doesn't disappear behind the header bar */
.td-content * {
Expand Down Expand Up @@ -471,12 +481,18 @@ of .td-content. This applies the same style to any blockquotes that descend from
Make padding symmetrical (this selector is used in the default styles to apply padding-left: 3rem)
*/
.pl-md-5, .px-md-5 {
padding-right: 3rem;
@include media-breakpoint-up(md) {
padding-right: 3rem;
}
}

/* Adjust default styles for info banner */
.pageinfo-primary {
max-width: 80%;
@include media-breakpoint-up(lg) {
max-width: 80%;
}
margin-top: 0;
margin-right: 0;
margin-left: 0;
border: 0;
border-left: solid 5px $secondary;
Expand Down
1 change: 1 addition & 0 deletions changelogs/internal/newsfragments/1770.clarification
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Reduce whitespace on mobile viewports

0 comments on commit 8ff3623

Please sign in to comment.