webapp/src/components/_shared/ConfirmModal/ConfirmModal.module.scss

28 lines
441 B
SCSS
Raw Normal View History

.confirmModal {
2023-11-29 20:54:55 +00:00
padding: 2rem;
position: relative;
.confirmModalTitle {
2024-07-12 13:19:49 +00:00
@include media-breakpoint-up(sm) {
margin: 0 10%;
}
2024-10-03 09:01:44 +00:00
font-size: 3.2rem;
color: var(--default-color);
2023-11-29 20:54:55 +00:00
font-weight: 700;
margin: 0 3rem;
text-align: center;
}
.confirmModalActions {
display: flex;
justify-content: space-between;
margin-top: 4rem;
2023-10-24 21:43:50 +00:00
gap: 0.5rem;
.confirmAction {
flex: 1;
}
}
}