14 lines
242 B
CSS
14 lines
242 B
CSS
.status-indicator {
|
|
padding: 0 !important;
|
|
margin-right: 1ch;
|
|
border-radius: 50%;
|
|
background-color: var(--red-3);
|
|
height: 10px;
|
|
width: 10px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.status-indicator.ok {
|
|
background-color: var(--green-3);
|
|
}
|