mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
22 lines
287 B
CSS
22 lines
287 B
CSS
.legend {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
.label {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: var(--font-size-sm);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.label + .label {
|
|
margin-inline-start: 20px;
|
|
}
|
|
|
|
.hidden {
|
|
color: var(--base400);
|
|
}
|