mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 00:03:27 +10:00
29 lines
384 B
CSS
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;
|
|
}
|