feat(storefront): show event date notices

This commit is contained in:
2026-09-14 14:50:11 -03:00
parent 8664c86915
commit b5fae81795
9 changed files with 367 additions and 58 deletions

View File

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