19 lines
344 B
SCSS
19 lines
344 B
SCSS
@use "../css/variables.module" as *;
|
|
|
|
.excalidraw {
|
|
.tool-popover-content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 0.25rem;
|
|
border-radius: 0.5rem;
|
|
background: var(--island-bg-color);
|
|
box-shadow: var(--shadow-island);
|
|
padding: 0.5rem;
|
|
z-index: var(--zIndex-layerUI);
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
}
|