18 lines
270 B
SCSS
18 lines
270 B
SCSS
//
|
|
// _task.scss
|
|
//
|
|
|
|
.task-item {
|
|
padding-left: 12px;
|
|
position: relative;
|
|
|
|
&:before {
|
|
content: "\F01DB";
|
|
font-family: "Material Design Icons";
|
|
position: absolute;
|
|
left: 0;
|
|
font-size: 19px;
|
|
top: -3px;
|
|
}
|
|
}
|