25 lines
362 B
SCSS
25 lines
362 B
SCSS
.Sticker {
|
|
overflow: visible !important;
|
|
contain: layout;
|
|
position: relative;
|
|
|
|
&.reversed {
|
|
transform: scaleX(-1);
|
|
}
|
|
|
|
&:not(.inactive) {
|
|
cursor: var(--custom-cursor, pointer);
|
|
}
|
|
|
|
&.inactive {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.effect-sticker {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: -1rem;
|
|
transform: translateY(-50%);
|
|
}
|
|
}
|