You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
439 B
SCSS
20 lines
439 B
SCSS
@use '../utilities/main_utilities' as *;
|
|
|
|
/* Popups */
|
|
.modal{
|
|
border: 1px solid $color-bg-secondary;
|
|
border-radius: $border-radius;
|
|
box-shadow: $box-shadow $color-shadow;
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 50%;
|
|
z-index: 999;
|
|
|
|
@include color-scheme(dark) {
|
|
border-color: $color-bg-secondary--dark;
|
|
box-shadow: $color-shadow--dark;
|
|
}
|
|
}
|