mirror of
https://github.com/pi-hole/web.git
synced 2026-05-02 06:32:49 +01:00
23 lines
315 B
Plaintext
23 lines
315 B
Plaintext
/*
|
|
* Component: Label
|
|
* ----------------
|
|
*/
|
|
.label-default {
|
|
background-color: @gray;
|
|
color: #444;
|
|
}
|
|
.label-danger {
|
|
&:extend(.bg-red);
|
|
}
|
|
.label-info {
|
|
&:extend(.bg-aqua);
|
|
}
|
|
.label-waring {
|
|
&:extend(.bg-yellow);
|
|
}
|
|
.label-primary {
|
|
&:extend(.bg-light-blue);
|
|
}
|
|
.label-success {
|
|
&:extend(.bg-green);
|
|
} |