Initial commit from sbadmin2 template

This commit is contained in:
2025-11-23 10:49:07 +00:00
commit 74f5d3599a
1879 changed files with 201633 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
// List Groups
@mixin list-group-item-variant($state, $background, $color) {
.list-group-item-#{$state} {
color: $color;
background-color: $background;
&.list-group-item-action {
@include hover-focus() {
color: $color;
background-color: darken($background, 5%);
}
&.active {
color: $white;
background-color: $color;
border-color: $color;
}
}
}
}