fix: fixes welcome screen on mobile

This commit is contained in:
florian 2023-08-04 08:01:25 +02:00
parent 7a5177e765
commit fad5a94597
2 changed files with 16 additions and 1 deletions

View File

@ -30,6 +30,21 @@
gap: 24px;
}
@media (max-width: 768px) {
.disclaimer {
position: absolute;
width: 100vw;
transform: none;
overflow-y: scroll;
max-height: 100vh;
box-sizing: border-box;
max-width: none;
top: 0;
left: 0;
justify-content: start;
}
}
.disclaimer .disclaimer-footer {
flex-shrink: 1;
display: flex;

View File

@ -29,7 +29,7 @@ body {
margin: 0;
display: flex;
place-items: center;
min-width: 320px;
min-width: 280px;
min-height: 100vh;
}