Skip to content

Commit

Permalink
Merge pull request #21 from rustnl/mobile-fixes
Browse files Browse the repository at this point in the history
Mobile fixes
  • Loading branch information
erikjee authored Dec 16, 2024
2 parents a432f02 + 3d527a4 commit 1a018bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/page/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const { style = "page" }: Props = Astro.props;
}

&.page {
min-height: 84px;
min-height: 8rem;

img {
max-height: 3rem;
Expand Down
5 changes: 4 additions & 1 deletion src/styles/global/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ b {
}

h1, h2 {
text-decoration: underline $color-red-400 0.1em;
// note: writing this as text-decoration shorthand does not work on safari
text-decoration-line: underline;
text-decoration-color: $color-red-400;
text-decoration-thickness: 0.3rem;
}


Expand Down

0 comments on commit 1a018bf

Please sign in to comment.