fix: equal gaps above and under column

This commit is contained in:
2025-09-04 12:03:50 +04:00
parent 6d58add2e7
commit 96ea0bba5e
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
.container { .container {
height: calc(100vh - 210px); height: 100%;
@media (max-width: 48em) { @media (max-width: 48em) {
width: 80vw; width: 80vw;
height: calc(100vh - 215px); height: calc(100vh - 215px);
@ -12,7 +12,7 @@
gap: 0; gap: 0;
@media (max-width: 48em) { @media (max-width: 48em) {
max-height: calc(100vh - 215px); max-height: 100%;
} }
@mixin light { @mixin light {

View File

@ -23,5 +23,5 @@
} }
.swiper-container :global(.swiper-slide) { .swiper-container :global(.swiper-slide) {
padding-bottom: 20px; margin-bottom: calc(var(--mantine-spacing-sm) * 2);
} }