Skip to content

Commit

Permalink
Add global CSS to set minimum height, webkit attribute for safari issue
Browse files Browse the repository at this point in the history
  • Loading branch information
grayashh committed Sep 1, 2024
1 parent 9666f0c commit 3260760
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,12 @@
.font-bagel-fat-one {
font-family: var(--font-bagel-fat-one);
}

html,
body,
:root {
min-height: 100vh;
@supports (-webkit-appearance: none) and (stroke-color: transparent) {
min-height: -webkit-fill-available;
}
}

0 comments on commit 3260760

Please sign in to comment.