snort/packages/app/src/Element/Modal.css

24 lines
426 B
CSS
Raw Normal View History

2022-12-30 23:35:02 +00:00
.modal {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
background-color: var(--modal-bg-color);
display: flex;
justify-content: center;
z-index: 42;
2023-04-05 11:06:07 +00:00
overflow-y: auto;
2023-01-25 18:08:53 +00:00
}
.modal-body {
background-color: var(--note-bg);
padding: 10px;
border-radius: 10px;
width: 500px;
2023-04-10 14:55:25 +00:00
border: 1px solid var(--font-tertiary-color);
margin-top: auto;
margin-bottom: auto;
2023-05-10 12:29:07 +00:00
overflow: hidden;
}