feat(event-schedules): add border radius and clip-path to table rows for improved styling

This commit is contained in:
2026-08-12 09:30:17 -03:00
parent 5f0c99c395
commit caa1fddcc1
2 changed files with 5 additions and 5 deletions

View File

@@ -121,11 +121,6 @@
.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;

View File

@@ -72,6 +72,11 @@ label {
color: #8a8a8a;
> tbody > tr {
border-radius: 0.5rem;
clip-path: inset(0 round 0.5rem);
}
> tbody > tr:nth-of-type(odd) {
background-color: rgba(221, 221, 221, 0.25);
}