Color all cells

This commit is contained in:
Jason Zimdars
2025-01-23 09:53:12 -06:00
parent 570d4ff66c
commit c0a2b36000
2 changed files with 1 additions and 5 deletions
-4
View File
@@ -38,10 +38,6 @@
inline-size: 100%;
min-block-size: var(--block-space);
&:nth-child(-n + 8) {
background-color: var(--color-bg);
}
&:nth-child(1n + 57) {
background-color: var(--color-highlight);
}
+1 -1
View File
@@ -58,7 +58,7 @@ module EventsHelper
def render_column_headers
[ "Touched", "Discussed", "Added", "Popped" ].map do |header|
content_tag(:h3, header, class: "event-grid-column-title")
content_tag(:h3, header, class: "event-grid-column-title margin-block-end-half")
end.join.html_safe
end
end