99fdffdab7
* fix: mobile tools positioning * add var for padding * use css var * new line * stupid mistake * lint
41 lines
822 B
SCSS
41 lines
822 B
SCSS
@import "../css/variables.module";
|
|
|
|
.excalidraw {
|
|
.FixedSideContainer {
|
|
position: absolute;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.FixedSideContainer > * {
|
|
pointer-events: all;
|
|
}
|
|
|
|
.FixedSideContainer_side_top {
|
|
left: var(--editor-container-padding);
|
|
top: var(--editor-container-padding);
|
|
right: var(--editor-container-padding);
|
|
bottom: var(--editor-container-padding);
|
|
z-index: 2;
|
|
}
|
|
|
|
.FixedSideContainer_side_top.zen-mode {
|
|
right: 42px;
|
|
}
|
|
}
|
|
|
|
/* TODO: if these are used, make sure to implement RTL support
|
|
.FixedSideContainer_side_left {
|
|
left: var(--space-factor);
|
|
top: var(--space-factor);
|
|
bottom: var(--space-factor);
|
|
z-index: 1;
|
|
}
|
|
|
|
.FixedSideContainer_side_right {
|
|
right: var(--space-factor);
|
|
top: var(--space-factor);
|
|
bottom: var(--space-factor);
|
|
z-index: 3;
|
|
}
|
|
*/
|