0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-25 18:22:42 +00:00

media query for mobile use expanded to vertical stack

This commit is contained in:
Víctor Losada Hernández
2024-07-24 00:50:21 +02:00
parent e206b501a6
commit e562ebef48

View File

@@ -247,10 +247,18 @@ body {
// media query for when the page is smaller than 1079 px in width
@media screen and (max-width: 1079px) {
.vaultPage .content .dataGroup.resultsContainer .foundBrews .brewItem {
width: 100%;
color: black;
background-image: url('/assets/parchmentBackground.jpg');
}
.vaultPage .content {
grid-template-columns: none;
grid-template-rows: 325px 1fr;
.brewLookup {
padding-block:10px 20px;
}
.dataGroup.resultsContainer .foundBrews .brewItem {
width: 100%;
color: black;
background-image: url('/assets/parchmentBackground.jpg');
}
}
}