webapp/src/components/Nav/ConfirmModal/ConfirmModal.module.scss
Ilya Y 9acfdafc2e
Feature/og meta tags (#329)
Add SEO metatags
2023-12-13 13:39:31 +03:00

29 lines
451 B
SCSS

.confirmModal {
padding: 2rem;
position: relative;
.confirmModalTitle {
@include font-size(3.2rem);
color: var(--default-color);
font-weight: 700;
margin: 0 3rem;
text-align: center;
@include media-breakpoint-up(sm) {
margin: 0 10%;
}
}
.confirmModalActions {
display: flex;
justify-content: space-between;
margin-top: 4rem;
gap: 0.5rem;
.confirmAction {
flex: 1;
}
}
}