From 4d476227ab771553596c673b0b33b55b985781a2 Mon Sep 17 00:00:00 2001 From: Chris Lowis Date: Sun, 21 Dec 2025 21:13:51 +0000 Subject: [PATCH] Fix selector typo The h2 here was not being applied to just the info box. --- assets/css/app.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/assets/css/app.css b/assets/css/app.css index 16c1767..dbd7abf 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -467,7 +467,11 @@ footer { padding: var(--space-lg); } -.coop-info-box__content strong, h2 { +.coop-info-box__content strong { + color: var(--cotech-black); +} + +.coop-info-box__content h2 { color: var(--cotech-black); }