项目文件夹

文件
dragosct10 b51f623f8c v3.2.0
2024-10-22 16:36:18 +03:00

26 行
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;
}
}
}