1
2
3
4
5
6
7
8
9
10
11
12
13
| $run-status-size: 20px;
| .run-status {
| width: $run-status-size;
| height: $run-status-size;
| border-radius: 50%;
| font-size: 14px;
| color: white;
| background-color: rgb(159 159 159);
|
| &_work {
| background-color: rgb(1 198 1);
| }
| }
|
|