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

29 lines
451 B
SCSS
Raw Normal View History

.confirmModal {
2023-11-29 20:54:55 +00:00
padding: 2rem;
position: relative;
.confirmModalTitle {
2023-10-24 21:43:50 +00:00
@include 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;
2023-10-24 21:43:50 +00:00
@include media-breakpoint-up(sm) {
margin: 0 10%;
}
}
.confirmModalActions {
display: flex;
justify-content: space-between;
margin-top: 4rem;
2023-10-24 21:43:50 +00:00
gap: 0.5rem;
.confirmAction {
flex: 1;
}
}
}