frontend/v4/css/mobile.css
2024-01-30 01:29:25 +00:00

47 lines
646 B
CSS

/*-------------------- Mobile --------------------*/
@media only screen and (max-width: 480px) {
.navlogo {
display: none;
}
.games {
grid-template-columns: repeat(auto-fill, 150px);
grid-gap: 1rem;
margin: 1rem;
}
.game {
height: 185px;
width: 150px;
}
.game-image {
height: 150px;
width: 150px;
}
.game-text {
line-height: 35px;
width: 150px;
}
.review:last-child {
display: none;
}
.review:first-child {
display: none;
}
.review-placeholder {
display: none;
}
}
@media only screen and (max-height: 432px) {
.reviews-link {
display: none;
}
}