This commit is contained in:
Maciej Caderek
2022-04-04 22:12:03 +02:00
parent 197e1504ab
commit 32c362b0d0
11 changed files with 78 additions and 22 deletions

View File

@@ -6,13 +6,6 @@
height: 100vh;
}
@media (orientation: portrait) {
.game-box {
padding: 0;
height: 800px;
}
}
.game {
height: 100%;
display: grid;
@@ -37,3 +30,15 @@
.span3 {
grid-row-end: span 3;
}
@media (orientation: portrait) {
.game-box {
padding: 0;
height: auto;
min-height: 100vh;
}
.game {
display: block;
}
}