Newer
Older
@import '../../styles/config/colors';
.modal-bg {
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: linear-gradient(180deg, #323339 0%, #25262b 100%);
box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.55);
border-radius: 4px;
padding: 1rem;
position: relative;
max-width: 350px;
width: 100%;
}
.modal-large {
max-width: 700px;
min-height: 380px;
display: flex;
flex-direction: column;
}
.buttons {
display: flex;
justify-content: center;
}
}