2025-04-06 00:23:03 -04:00
|
|
|
body:has(> .ui.active.dimmer) {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-02 08:54:54 -04:00
|
|
|
.ui.dimmer {
|
|
|
|
|
align-items: center;
|
|
|
|
|
animation-fill-mode: both;
|
|
|
|
|
background: var(--color-overlay-backdrop);
|
|
|
|
|
display: none;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
2025-04-06 00:23:03 -04:00
|
|
|
position: fixed;
|
2025-04-02 08:54:54 -04:00
|
|
|
opacity: 0;
|
2026-03-07 18:11:31 -05:00
|
|
|
overflow: hidden auto;
|
2025-04-06 00:23:03 -04:00
|
|
|
transform-origin: center center;
|
2025-04-02 08:54:54 -04:00
|
|
|
justify-content: center;
|
|
|
|
|
user-select: none;
|
|
|
|
|
width: 100%;
|
|
|
|
|
will-change: opacity;
|
|
|
|
|
z-index: 1000;
|
2026-03-07 18:11:31 -05:00
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
display: flex;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scrolling {
|
|
|
|
|
top: 1em;
|
|
|
|
|
}
|
2025-04-02 08:54:54 -04:00
|
|
|
}
|