You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
314 B
CSS

.statusIndicator {
composes: centerContent from "../shared.css";
border-radius: 2px;
}
.content {
padding: 4px; /* FIXME: Why do we have this? */
}
.status-positive {
background-color: rgb(0, 93, 9);
}
.status-negative {
background-color: rgb(106, 0, 0);
}
.status-neutral {
background-color: #5a5a5a;
}