mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 07:03:25 +00:00
23 lines
426 B
SCSS
23 lines
426 B
SCSS
@import "../../styles/colors.scss";
|
|
|
|
.modal-wrapper {
|
|
z-index: 9999;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
background: rgba($black, 0.5);
|
|
backdrop-filter: blur(0.25em);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.modal-container {
|
|
background: $light-grey;
|
|
min-height: 250px;
|
|
min-width: 250px;
|
|
}
|