Files
eveAI/nginx/static/scss/material-kit-pro/_list-check.scss
2024-06-26 12:02:14 +02:00

26 lines
481 B
SCSS

// Checklist item
// contains the checklist entry info and checkbox
.checklist-item {
&:before {
content: "";
position: absolute;
width: 3px;
height: 100%;
top: 0;
left: 0;
background-color: $primary;
border-radius: $border-radius-sm;
}
}
// Color variations
@each $color, $value in $theme-colors {
.checklist-item-#{$color} {
&:before {
background-color: $value;
}
}
}