feat(event): display pending date change notices

This commit is contained in:
2026-09-15 17:06:29 -03:00
parent 17dbf52181
commit f87f7f55a9
6 changed files with 122 additions and 59 deletions

View File

@@ -1,33 +1,28 @@
.event-date-notice {
.event-date-notice-modal {
display: grid;
gap: 20px;
justify-items: center;
gap: 1.5rem;
justify-items: stretch;
text-align: center;
}
.event-date-notice__title,
.event-date-notice__description {
h2,
p {
margin: 0;
}
.event-date-notice__title {
color: var(--color-danger, #dc3545);
h2 {
color: var(--tenant-danger);
font-size: 16px;
font-weight: 700;
line-height: 1.25;
}
.event-date-notice__description {
p {
color: #666666;
font-size: 15px;
font-weight: 400;
line-height: 1.4;
line-height: 1.35;
}
.event-date-notice__description strong {
b {
font-weight: 700;
}
.event-date-notice__actions {
width: 100%;
}