mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00

* fix comments on the frontend * move jwt token service to its own module * other fixes and updates
28 lines
794 B
CSS
28 lines
794 B
CSS
.control {
|
|
font-weight: 500;
|
|
display: block;
|
|
width: 100%;
|
|
padding: var(--mantine-spacing-xs) var(--mantine-spacing-xs);
|
|
color: var(--mantine-color-text);
|
|
font-size: var(--mantine-font-size-sm);
|
|
|
|
@mixin hover {
|
|
background-color: light-dark(var(--mantine-color-gray-0), var(--mantine-color-dark-7));
|
|
color: light-dark(var(--mantine-color-black), var(--mantine-color-dark-0));
|
|
}
|
|
}
|
|
|
|
.item {
|
|
display: block;
|
|
text-decoration: none;
|
|
padding: var(--mantine-spacing-xs) var(--mantine-spacing-md);
|
|
padding-left: 4px;
|
|
margin-left: var(--mantine-spacing-sm);
|
|
font-size: var(--mantine-font-size-sm);
|
|
color: light-dark(var(--mantine-color-gray-7), var(--mantine-color-dark-0));
|
|
}
|
|
|
|
.chevron {
|
|
transition: transform 200ms ease;
|
|
}
|