27 lines
565 B
SCSS
27 lines
565 B
SCSS
.modal {
|
|
position:absolute;
|
|
z-index: 1000;
|
|
top: 1rem;
|
|
left: 1rem;
|
|
right: 1rem;
|
|
bottom: 1rem;
|
|
overflow: scroll;
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
display: none;
|
|
background: var(--primary-color-darekr);
|
|
border-radius: 10px;
|
|
padding: 2rem;
|
|
|
|
i.close {
|
|
position: absolute;
|
|
z-index: 10000;
|
|
color: var(--fg-color-inverted);
|
|
font-family: 'font-awesome', sans-serif;
|
|
width: 2rem;
|
|
height: 2rem;
|
|
right: .5rem;
|
|
top: .5rem;
|
|
cursor: pointer;
|
|
}
|
|
}
|