workspace with decoupled nostr package
This commit is contained in:
27
packages/app/src/Element/Modal.css
Normal file
27
packages/app/src/Element/Modal.css
Normal file
@ -0,0 +1,27 @@
|
||||
.modal {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: var(--modal-bg-color);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
z-index: 42;
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
background-color: var(--note-bg);
|
||||
padding: 10px;
|
||||
border-radius: 10px;
|
||||
width: 500px;
|
||||
min-height: 10vh;
|
||||
}
|
||||
|
||||
@media (max-width: 720px) {
|
||||
.modal-body {
|
||||
width: 100vw;
|
||||
margin: 0 10px;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user