mirror of
https://github.com/umami-software/umami.git
synced 2026-02-05 05:07:15 +01:00
26 lines
408 B
CSS
26 lines
408 B
CSS
.label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
padding: 0.1em 0.5em;
|
|
border-radius: 5px;
|
|
color: var(--base500);
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.positive {
|
|
color: var(--green700);
|
|
background: var(--green100);
|
|
}
|
|
|
|
.negative {
|
|
color: var(--red700);
|
|
background: var(--red100);
|
|
}
|
|
|
|
.neutral {
|
|
color: var(--base700);
|
|
background: var(--base100);
|
|
}
|