icynet-admin/components/common/Modal/Modal/Modal.module.scss

33 lines
463 B
SCSS

.modal {
display: flex;
flex-direction: column;
max-width: 480px;
margin: 0 auto;
background-color: #fff;
margin-top: 8%;
.header {
padding: 1rem;
border-bottom: 1px solid #ddd;
display: flex;
justify-content: space-between;
h1,
h2,
h3 {
margin: 0;
}
}
.body {
padding: 1rem;
}
.footer {
padding: 1rem;
border-top: 1px solid #ddd;
display: flex;
justify-content: flex-end;
}
}