mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
Added db selector, modal
This commit is contained in:
parent
0876761a0f
commit
3343a2a3af
10 changed files with 250 additions and 32 deletions
22
src/components/modal.module.css
Normal file
22
src/components/modal.module.css
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue