20 lines
399 B
Sass
20 lines
399 B
Sass
@use '/src/styles/variables.sass' as vars
|
|
@use 'sass:color'
|
|
|
|
.modal
|
|
display: flex
|
|
justify-content: center
|
|
align-items: center
|
|
position: fixed
|
|
top: 0
|
|
left: 0
|
|
width: 100%
|
|
height: 100%
|
|
backdrop-filter: blur(20px)
|
|
background-color: rgba(color.adjust(vars.$background, $blackness: 5%), 0.6)
|
|
z-index: 999
|
|
|
|
&__content
|
|
border-radius: 8px
|
|
padding: 2rem
|
|
position: relative
|