Files
minesweeper-py/static/small-screens.css
2025-10-31 05:32:08 +03:00

25 lines
332 B
CSS

@media (max-width: 1200px) {
#game-canvas {
width: calc(100% - 300px);
}
}
@media (max-width: 768px) {
html {
zoom: 75%;
}
#game {
flex-direction: column;
}
#game-tools {
height: 50vh;
}
#game-canvas {
width: 100%;
}
}
@media (max-width: 480px) {}