From d653134a5a7c98ebbda637c17d3be775090c456a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 20 Feb 2026 10:47:49 +0000 Subject: [PATCH] Improve CSS formatting with proper indentation Co-authored-by: jmiller-moko <230051081+jmiller-moko@users.noreply.github.com> --- src/templates/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/templates/index.php b/src/templates/index.php index d270ae5..b655a9c 100644 --- a/src/templates/index.php +++ b/src/templates/index.php @@ -170,7 +170,7 @@ $generateThemeCSS = function($colorMap, $theme) use ($sanitizeColor) { $value = $this->params->get($param, ''); $sanitized = $sanitizeColor($value); if ($sanitized !== null) { - $overrides[] = $cssVar . ': ' . $sanitized . ';'; + $overrides[] = "\t" . $cssVar . ': ' . $sanitized . ';'; } }