mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
FIX gap above bury (#4298)
This commit is contained in:
parent
e3d0a30443
commit
c93e11f343
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue