1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/styles/patterns/_modal.scss
Phuoc Nguyen f3f89374d1 feat: Modal
2022-09-20 18:52:05 +07:00

38 lines
598 B
SCSS

.modal {
/* Border */
border: 1px solid #d1d5db;
border-radius: 0.25rem;
display: flex;
flex-direction: column;
/* Demo */
height: 8rem;
width: 8rem;
}
.modal__header {
display: flex;
justify-content: space-between;
/* Border */
border-bottom: 1px solid #d1d5db;
padding: 0.25rem 0.5rem;
}
.modal__body {
flex: 1;
overflow: auto;
}
.modal__footer {
display: flex;
/* Push the buttons to the right */
justify-content: flex-end;
/* Border */
border-top: 1px solid #d1d5db;
padding: 0.25rem 0.5rem;
}