mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-15 19:16:58 +01:00
12 lines
315 B
CSS
12 lines
315 B
CSS
|
|
.pill {
|
||
|
|
cursor: default;
|
||
|
|
background-color: light-dark(
|
||
|
|
var(--mantine-color-white),
|
||
|
|
var(--mantine-color-dark-7)
|
||
|
|
);
|
||
|
|
border: rem(1px) solid
|
||
|
|
light-dark(var(--mantine-color-gray-4), var(--mantine-color-dark-7));
|
||
|
|
padding-left: var(--mantine-spacing-xs);
|
||
|
|
border-radius: var(--mantine-radius-xl);
|
||
|
|
}
|