You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
842 B
SCSS
41 lines
842 B
SCSS
2 years ago
|
@import "../css/variables.module";
|
||
|
|
||
4 years ago
|
.excalidraw {
|
||
|
.FixedSideContainer {
|
||
|
position: absolute;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
.FixedSideContainer > * {
|
||
1 year ago
|
pointer-events: var(--ui-pointerEvents);
|
||
4 years ago
|
}
|
||
|
|
||
|
.FixedSideContainer_side_top {
|
||
2 years ago
|
left: var(--editor-container-padding);
|
||
|
top: var(--editor-container-padding);
|
||
|
right: var(--editor-container-padding);
|
||
|
bottom: var(--editor-container-padding);
|
||
4 years ago
|
z-index: 2;
|
||
|
}
|
||
|
|
||
|
.FixedSideContainer_side_top.zen-mode {
|
||
|
right: 42px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* TODO: if these are used, make sure to implement RTL support
|
||
|
.FixedSideContainer_side_left {
|
||
4 years ago
|
left: var(--space-factor);
|
||
|
top: var(--space-factor);
|
||
|
bottom: var(--space-factor);
|
||
4 years ago
|
z-index: 1;
|
||
|
}
|
||
|
|
||
|
.FixedSideContainer_side_right {
|
||
4 years ago
|
right: var(--space-factor);
|
||
|
top: var(--space-factor);
|
||
|
bottom: var(--space-factor);
|
||
4 years ago
|
z-index: 3;
|
||
|
}
|
||
|
*/
|