statki/public/assets/css/board-responsive.css

41 lines
580 B
CSS
Raw Normal View History

2024-03-25 12:41:02 +01:00
@media only screen and (max-width: 1280px) {
}
@media only screen and (max-width: 820px) {
.boardContainer {
width: 90vw;
aspect-ratio: 1;
}
.panelContainer {
flex-direction: column-reverse;
2024-03-25 13:44:30 +01:00
align-items: center;
2024-03-25 12:41:02 +01:00
}
.field {
width: 7.5vw; /* still need to test that */
}
2024-03-25 13:44:30 +01:00
.controls {
display: none;
}
.mobileControls {
display: block;
}
.break {
margin-top: 1rem;
}
.spaceFiller {
display: none;
}
body {
overflow-x: hidden;
}
2024-03-25 12:41:02 +01:00
}