feat(scss): More idiomatic writing

This commit is contained in:
Tom Hubrecht 2024-09-27 14:41:41 +02:00
parent fa8f8a214f
commit 6a581fcec4
Signed by: thubrecht
SSH key fingerprint: SHA256:r+nK/SIcWlJ0zFZJGHtlAoRwq1Rm+WcKAm5ADYMoQPc

View file

@ -35,20 +35,20 @@ body {
.bt-links {
justify-content: space-evenly;
}
.bt-links > .button {
.button {
width: 47.5%;
}
}
.grid.groups {
--bulma-grid-column-min: min(24rem, 100%);
}
.groups > .button > span {
.button > span {
overflow-x: hidden;
text-overflow: ellipsis;
}
}
#notifications {
margin-left: -0.75rem;
@ -63,8 +63,11 @@ body {
margin-bottom: var(--bulma-block-spacing);
}
.dropdown.is-fullwidth,
.dropdown.is-fullwidth > .dropdown-trigger,
.dropdown.is-fullwidth > .dropdown-menu {
.dropdown.is-fullwidth {
width: 100%;
.dropdown-trigger,
.dropdown-menu {
width: 100%;
}
}