19 lines
344 B
SCSS
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;
|
|
}
|