mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 06:23:06 +08:00
e62bc6c250
* feat: emoji picker * fix: lazy load emoji data * loading animation (for slow connection) * parsing :shortcode: and replace with emoji + add extension to title-editor * fix * Remove title editor support * Remove shortcuts support * Cleanup --------- Co-authored-by: Philipinho <16838612+Philipinho@users.noreply.github.com>
24 lines
376 B
CSS
24 lines
376 B
CSS
.menuBtn {
|
|
border-radius: var(--mantine-radius-sm);
|
|
|
|
&:hover {
|
|
@mixin light {
|
|
background: var(--mantine-color-gray-2);
|
|
}
|
|
|
|
@mixin dark {
|
|
background: var(--mantine-color-gray-light);
|
|
}
|
|
}
|
|
}
|
|
|
|
.selectedItem {
|
|
@mixin light {
|
|
background: var(--mantine-color-gray-2);
|
|
}
|
|
|
|
@mixin dark {
|
|
background: var(--mantine-color-gray-light);
|
|
}
|
|
}
|