FIX gap above bury (#4298)

This commit is contained in:
GithubAnon0000 2025-09-01 05:09:42 +00:00 committed by GitHub
parent e3d0a30443
commit c93e11f343
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -136,12 +136,13 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
:global(.container-columns) { :global(.container-columns) {
display: grid; display: grid;
gap: 20px; gap: 0px;
} }
@include bp.with-breakpoint("lg") { @include bp.with-breakpoint("lg") {
:global(.container-columns) { :global(.container-columns) {
grid-template-columns: repeat(2, 1fr); grid-template-columns: repeat(2, 1fr);
gap: 20px;
} }
} }
} }