Files
thisORthat/frontend/src/components/common/Overlay.css
T
2026-08-13 11:35:00 +03:00

17 lines
324 B
CSS

.overlay {
position: fixed;
inset: 0;
background: var(--overlay-bg);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
z-index: 50;
opacity: 0;
pointer-events: none;
transition: opacity var(--duration-normal) var(--ease-smooth);
}
.overlay--visible {
opacity: 1;
pointer-events: auto;
}