feat(modal): add simple modal component with open and close functionality

This commit is contained in:
2026-07-03 09:00:49 -03:00
parent bedb74ebd5
commit 3697c4b97c
8 changed files with 234 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
.simple-modal {
display: grid;
gap: 1.5rem;
justify-items: center;
text-align: center;
}
.simple-modal__content {
margin: 0;
color: #666666;
line-height: 1.5;
}
.simple-modal__actions {
display: flex;
justify-content: center;
gap: 0.75rem;
flex-wrap: wrap;
}