Fixing styling, and removing strict from tsconfig

This commit is contained in:
Frank Delaguila
2022-11-05 18:09:09 -06:00
parent a036c449f7
commit 2023d09286
8 changed files with 142 additions and 22 deletions

View File

@@ -12,10 +12,25 @@
}
}
#modal-root {
display: flex;
justify-content: center;
}
.prevent-scroll {
overflow: hidden;
}
.modal {
background: #1d1d1c;
width: 100%;
height: 100%;
top: 100%;
transition: top 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.modal.open {
top: 0;
}
.spinner {