fix jumpy safari

This commit is contained in:
2023-05-21 13:28:02 +02:00
parent b7c38a8b2a
commit 7eeedd0eeb
5 changed files with 41 additions and 11 deletions

View File

@@ -5,11 +5,14 @@
@import '@fontsource/source-sans-pro/300';
html {
height: 100%;
height: fill-available;
height: -webkit-fill-available;
}
body {
min-height: 100%;
min-height: 100vh;
min-height: fill-available;
min-height: -webkit-fill-available;
font-family: 'Source Sans Pro', sans-serif;
overflow-y: scroll;
@apply flex flex-col bg-gray-100;