Fixed body/scroll height on mobile

This commit is contained in:
Fabio Manganiello 2025-03-31 22:10:37 +02:00
parent 35f7af7214
commit 3c2313252c
Signed by: blacklight
GPG key ID: D90FBA7F76362774
3 changed files with 8 additions and 3 deletions
frontend/src

View file

@ -98,7 +98,7 @@ export default {
.app-container { .app-container {
width: 100%; width: 100%;
height: 100vh; height: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background: var(--color-background); background: var(--color-background);

View file

@ -119,7 +119,8 @@
} }
body { body {
min-height: 100vh; height: 100%;
min-height: 100%;
color: var(--color-text); color: var(--color-text);
background: var(--color-background); background: var(--color-background);
transition: transition:

View file

@ -1,8 +1,12 @@
@import './base.css'; @import './base.css';
html {
height: 100%;
}
#app { #app {
width: 100%; width: 100%;
height: 100vh; height: 100%;
font-weight: normal; font-weight: normal;
} }