Files
Reactive-Resume/src/modals/BaseModal.module.css
2020-07-03 15:48:55 +05:30

29 lines
384 B
CSS

.root {
@apply flex items-center justify-center;
}
.modal {
width: min(600px, calc(100vw - 100px));
@apply p-8 rounded bg-white outline-none;
}
.modal .title {
@apply flex items-center justify-between;
}
.modal .title h2 {
@apply text-3xl;
}
.modal .title svg {
@apply cursor-pointer;
}
.modal .body {
@apply my-8;
}
.modal .actions {
@apply flex justify-end;
}