diff --git a/web/modals/modal.css b/web/modals/modal.css index 7290496a1..48eb58524 100644 --- a/web/modals/modal.css +++ b/web/modals/modal.css @@ -1,59 +1,57 @@ div.modalOverlay { position: fixed; left: 0; top: 0; height: 100%; z-index: 4; width: 100%; background-color: rgba(0, 0, 0, 0.9); display: flex; flex-direction: column; align-items: center; justify-content: center; } div.modalContainer { display: flex; background-color: var(--modal-bg); border-radius: 8px; flex-direction: column; margin: 20px; overflow: hidden; } div.modalContainerSmall { width: 330px; - max-height: 500px; } div.modalContainerLarge { width: 500px; - max-height: 500px; } span.modalClose { display: flex; color: var(--modal-close-color); } span.modalClose:hover { cursor: pointer; color: var(--modal-close-color-hover); } div.modalHeader { display: flex; justify-content: space-between; align-items: center; padding: 32px 32px 0px 32px; } h2.title { font-size: 20px; font-weight: 500; line-height: 32px; color: var(--fg); display: flex; align-items: center; column-gap: 8px; }