scss-framework/components/_modal.scss

28 lines
565 B
SCSS
Raw Normal View History

2025-07-19 23:58:24 +02:00
.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;
}
}