13 lines
252 B
SCSS
13 lines
252 B
SCSS
@use "../css/theme" as *;
|
|
|
|
.excalidraw {
|
|
button.standalone {
|
|
@include outlineButtonIconStyles;
|
|
|
|
& > * {
|
|
// dissalow pointer events on children, so we always have event.target on the button itself
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
}
|