You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mvfront-react/styles/scss/_modal.scss

32 lines
446 B

.modal .overlay {
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 0;
left: 0;
}
.modal .body {
background: white;
width: 500px;
height: 600px;
border-radius: 15px;
padding: 15px;
}
.modal .body {
display: flex;
justify-content: flex-end;
font-size: 25px;
}
.modal {
border-radius: unset;
}
h4.modal-title {
color: $mv-blue-color;
}