Remove !important from table styles and improve selector specificity

- Remove all !important declarations from table cell styles in _index.scss
- Increase selector specificity by changing .location-cell to td.location-cell
- Change .details-cell to td.details-cell, .time-cell to td.time-cell, etc.
- This eliminates the need for !important while maintaining proper cascade order
- Follows CSS best practices for maintainable and readable stylesheets
This commit is contained in:
Deco Vander 2025-07-04 14:46:32 -04:00
parent 9716fe9f1d
commit 4f6b158022
2 changed files with 10 additions and 10 deletions

File diff suppressed because one or more lines are too long