mirror of
https://github.com/docmost/docmost.git
synced 2026-06-13 19:19:53 +00:00
26 lines
540 B
CSS
26 lines
540 B
CSS
.bubbleMenu {
|
|
display: flex;
|
|
width: fit-content;
|
|
border-radius: 2px;
|
|
border: 1px solid light-dark(var(--mantine-color-gray-3), var(--mantine-color-gray-8));
|
|
|
|
.active {
|
|
color: var(--mantine-color-blue-8);
|
|
}
|
|
|
|
.colorButton {
|
|
border: none;
|
|
}
|
|
|
|
.colorButton::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 1px;
|
|
background-color: light-dark(var(--mantine-color-gray-3), var(--mantine-color-gray-8));
|
|
}
|
|
|
|
}
|