feat(bulma): Tweak bt-link width

This commit is contained in:
Tom Hubrecht 2024-09-30 10:14:45 +02:00
parent a88d31541c
commit 61e3d4ed19
Signed by: thubrecht
SSH key fingerprint: SHA256:r+nK/SIcWlJ0zFZJGHtlAoRwq1Rm+WcKAm5ADYMoQPc

View file

@ -10,6 +10,9 @@ $dark: rgb(46, 46, 46);
$dark: $dark $dark: $dark
); );
@use "./sass/utilities/mixins" as mx;
@use "./sass/utilities/initial-variables.scss" as iv;
body { body {
min-height: 100vh; min-height: 100vh;
display: flex; display: flex;
@ -37,8 +40,14 @@ body {
justify-content: space-evenly; justify-content: space-evenly;
.button { .button {
@include mx.from(iv.$desktop) {
width: 47.5%; width: 47.5%;
} }
@include mx.until(iv.$desktop) {
width: 100%;
}
}
} }
.grid.groups { .grid.groups {