join/src/app/shared/components/overlay/overlay.component.scss
2024-04-17 22:10:33 +02:00

19 lines
344 B
SCSS

.overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
backdrop-filter: blur(5px);
background-color: rgba($color: #000000, $alpha: 0.2);
display: flex;
justify-content: center;
align-items: center;
z-index: 999;
}
.overlay-content {
display: flex;
align-items: center;
justify-content: center;
}