You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
648 B
33 lines
648 B
.iu-backdrop { |
|
position: fixed; |
|
inset: 0; |
|
background: rgba(0, 0, 0, 0.5); |
|
z-index: 999; |
|
} |
|
.iu-modal { |
|
position: fixed; |
|
top: 50%; |
|
left: 50%; |
|
transform: translate(-50%, -50%); |
|
background: #fff; |
|
width: min(600px, 90vw); |
|
max-height: 85vh; |
|
overflow: auto; |
|
padding: 1rem 1.25rem; |
|
z-index: 1000; |
|
} |
|
.iu-modal .modal-header { |
|
display: flex; |
|
justify-content: space-between; |
|
align-items: center; |
|
gap: .5rem; |
|
margin-bottom: .5rem; |
|
} |
|
.iu-modal .close { |
|
appearance: none; |
|
border: 0; |
|
background: transparent; |
|
font-size: 1.5rem; |
|
line-height: 1; |
|
cursor: pointer; |
|
}
|
|
|