Newer
Older
@import '../../styles/config/colors';
.modal-bg {
background-color: rgba(0, 0, 0, 0.7);
display: flex;
height: 100vh;
left: 0;
position: fixed;
top: 0;
width: 100%;
.modal-container {
align-items: center;
display: flex;
justify-content: center;
overflow-y: auto;
width: 100%;
}
.modal-content {
background: $grey-dark;
border-radius: 10px;
box-shadow: 0px 4px 8px rgba(43, 45, 92, 0.25),
0px 2px 4px rgba(43, 45, 92, 0.25);
padding: 1rem;
position: relative;
max-width: 350px;
width: 100%;
}
.buttons {
display: flex;
justify-content: center;
}
}