26 lines
481 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|