Added db selector, modal

This commit is contained in:
mrfry 2021-01-10 15:01:44 +01:00
parent 0876761a0f
commit 3343a2a3af
10 changed files with 250 additions and 32 deletions

View file

@ -0,0 +1,22 @@
.modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
}
.modalContent {
position: fixed;
background: var(--background-color);
width: 70%;
height: auto;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 5px;
padding: 20px;
cursor: auto;
}