From 5f0c99c395e9698e5973accff21ab565fe4291a4 Mon Sep 17 00:00:00 2001 From: ncoronel Date: Wed, 12 Aug 2026 09:27:50 -0300 Subject: [PATCH] feat(hero-banner): add border radius and clip-path to event schedule rows for improved styling --- .../components/hero-banner/hero-banner.component.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/app/shared/components/hero-banner/hero-banner.component.scss b/src/app/shared/components/hero-banner/hero-banner.component.scss index a664160..5ed564e 100644 --- a/src/app/shared/components/hero-banner/hero-banner.component.scss +++ b/src/app/shared/components/hero-banner/hero-banner.component.scss @@ -121,10 +121,14 @@ .event-schedules { margin-top: 1.25rem; + tr { + border-radius: 0.5rem; + clip-path: inset(0 round 0.5rem); + } + td { width: 50%; padding: 0.65rem 1rem; - border-radius: 0.5rem; vertical-align: middle; } }