0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-12 06:42:40 +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

@@ -244,3 +244,13 @@ body {
66%, 66%,
100% { content : '...'; } 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');
}
}