Skip to content

Commit

Permalink
Fix wrapping with large text on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
gamingrobot committed Dec 21, 2023
1 parent 07aa4d4 commit 3d825a6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions themes/hyde-hyde-hyde-zola/sass/hyde-hyde/_topbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
left: 0;
top: 0;
width: 100%;
padding-top: $topbar-top-offset;
height: $topbar-height;
padding-top: $topbar-offset;
padding-bottom: $topbar-offset;
background-color: $topbar-color;
text-align: center;
a {
Expand Down Expand Up @@ -38,7 +38,7 @@
display: flex;
align-items: stretch;
justify-content: space-around;
font-size: 23px;
font-size: $topbar-links-font-size;
}


Expand Down
7 changes: 4 additions & 3 deletions themes/hyde-hyde-hyde-zola/sass/hyde-hyde/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,10 @@ $h5-font-size:1rem;

// topbar
$topbar-color: #0d3a58;
$topbar-title-font-size: 1.8rem;
$topbar-height: 4rem;
$topbar-top-offset: 1rem;
$topbar-title-font-size: 28px;
$topbar-links-font-size: 23px;
$topbar-height: 3rem;
$topbar-offset: 1rem;

//copyright
$copyright-font-size: $font-scale-dot7;
Expand Down

0 comments on commit 3d825a6

Please sign in to comment.