24 lines
323 B
SCSS
24 lines
323 B
SCSS
.root {
|
|
overflow: visible !important;
|
|
contain: layout;
|
|
position: relative;
|
|
|
|
&:not(.inactive) {
|
|
cursor: var(--custom-cursor, pointer);
|
|
}
|
|
}
|
|
|
|
.mirrored {
|
|
transform: scaleX(-1);
|
|
}
|
|
|
|
.inactive {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.effect {
|
|
position: fixed;
|
|
z-index: var(--z-message-effect);
|
|
pointer-events: none;
|
|
}
|