mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-14 18:46:58 +01:00
* wip: add widget integrations * feat: Add integration option to widgets * feat: Add translation for widget integration select * fix: formatting issue * chore: address pull request feedback
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);
|
|
}
|