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
);
@use "./sass/utilities/mixins" as mx;
@use "./sass/utilities/initial-variables.scss" as iv;
body {
min-height: 100vh;
display: flex;
@ -37,7 +40,13 @@ body {
justify-content: space-evenly;
.button {
width: 47.5%;
@include mx.from(iv.$desktop) {
width: 47.5%;
}
@include mx.until(iv.$desktop) {
width: 100%;
}
}
}