mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 14:43:06 +08:00
16 lines
308 B
CSS
16 lines
308 B
CSS
.notificationItem {
|
|
display: block;
|
|
padding: 8px 12px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
.notificationItem:hover {
|
|
background-color: var(--mantine-color-default-hover);
|
|
}
|
|
|
|
.divider {
|
|
border-color: light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-5));
|
|
}
|