more refactors

This commit is contained in:
bronku 2026-05-13 09:05:29 +02:00
parent 787e9d96c2
commit 65a36f4d3e
7 changed files with 130 additions and 115 deletions

View file

@ -74,12 +74,9 @@
& > div {
justify-content: center;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-columns: repeat(var(--grid-cols), 1fr);
@media (max-width: 786px) {
grid-template-columns: 1fr;
}
width: 100%;
gap: 2rem;
@ -137,16 +134,13 @@
#kawiarnia-details {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-columns: repeat(var(--grid-cols), 1fr);
justify-content: center;
gap: 2rem;
width: 100%;
@media (max-width: 786px) {
grid-template-columns: 1fr;
}
& > header {
grid-column: span 3;
grid-column: 1/ -1;
display: flex;
flex-direction: column;
justify-content: center;