mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-17 03:29:31 -07:00
refactor(customCursor.ts): remove unused code and optimize custom cursor functionality refactor(stageNav.ts): remove unused code and optimize stage navigation functionality refactor(stage.ts): remove unused code and optimize stage functionality
22 lines
275 B
SCSS
22 lines
275 B
SCSS
.cursor {
|
|
position: fixed;
|
|
z-index: var(--z-cursor);
|
|
top: 0;
|
|
left: 0;
|
|
|
|
display: none;
|
|
cursor: none;
|
|
pointer-events: none;
|
|
|
|
color: white;
|
|
mix-blend-mode: difference;
|
|
}
|
|
|
|
.active {
|
|
display: block;
|
|
}
|
|
|
|
.cursorInner {
|
|
transform: translate3d(-50%, -50%, 0);
|
|
}
|