0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-28 02:42:39 +00:00

media query to show only one column in case of small window

This commit is contained in:
Víctor Losada Hernández
2024-07-24 00:34:13 +02:00
parent 016a9fa1e8
commit e206b501a6

View File

@@ -243,4 +243,14 @@ body {
66%,
100% { content : '...'; }
}
// 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');
}
}