This commit is contained in:
Maciej Caderek
2022-04-10 21:35:52 +02:00
parent 32c362b0d0
commit fc0746923c
25 changed files with 209 additions and 43 deletions

View File

@@ -1,12 +1,11 @@
.load {
background: var(--color-bg-block);
padding: 2rem;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.load__game-input {
height: 50vh;
height: 40vh;
margin-top: 2rem;
}
@@ -44,3 +43,15 @@
.load__link-input {
margin-top: 2rem;
}
@media (orientation: portrait) {
.load__game-input {
height: 20vh;
}
}
@media (orientation: landscape) and (max-height: 400px) {
.load__game-input {
height: 30vh;
}
}