papercss/src/components/_list-group.scss
2023-03-29 03:37:16 +00:00

41 lines
672 B
SCSS

.list-group {
@include border-style(1);
border: 1px solid $muted;
padding: 0;
& li::before {
content: '';
}
& li,
.list-group-item {
@include border-style(1);
padding: 0.5rem;
padding-left: 1rem;
}
.active {
@include border-style(1);
background: $secondary;
color: $white;
padding: 0.5rem;
padding-left: 1rem;
}
@each $colorName,
$color,
$color-light,
$color-text in $colors {
.list-group-item-#{$colorName},
.paper-list-group-item-#{$colorName} {
@include border-style(1);
background: $color;
color: $white;
padding: 0.5rem;
padding-left: 1rem;
}
}
}