mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-14 18:19:29 -07:00
feat(container.ts): create container module to handle scrollable behavior and add/remove disableScroll class fix(customCursor.ts): update append target for cursor element to use container instead of main fix(stage.ts): update append target for stage element to use container instead of main fix(stageNav.ts): update append target for navOverlay element to use container instead of main feat(main.ts): initialize container module and conditionally initialize stage and stageNav modules based on device type fix(nav.ts): update references to state module functions to use state.get() instead of getState()
20 lines
283 B
SCSS
20 lines
283 B
SCSS
.container {
|
|
position: fixed;
|
|
top: 0;
|
|
z-index: 0;
|
|
|
|
width: 100vw;
|
|
height: var(--window-height);
|
|
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
background: white;
|
|
|
|
overscroll-behavior: none;
|
|
-webkit-overflow-scrolling: none;
|
|
}
|
|
|
|
.disableScroll {
|
|
pointer-events: none;
|
|
}
|