remove mix; add vite

Signed-off-by: envoyr <hello@envoyr.com>
This commit is contained in:
envoyr
2023-10-16 12:48:35 +02:00
parent 7438786a24
commit 0f37dfb1eb
52 changed files with 999 additions and 8755 deletions

View File

@@ -0,0 +1,30 @@
.card {
@extend .shadow-sm;
margin-bottom: $spacer * 1.5;
.card-header {
border-bottom: $border-color solid 1px;
font-weight: bold;
}
.card-body {
p {
@extend .card-text;
}
}
&.deactivated {
@extend .text-body-secondary;
background: lighten($light-bg, 3%);
i {
@extend .text-body-secondary;
}
}
}
@include color-mode(dark) {
.card, .list-group-item {
background: $dark-bg;
}
}