Improve CSS formatting with proper indentation

Co-authored-by: jmiller-moko <230051081+jmiller-moko@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-20 10:47:49 +00:00
parent b182beb66d
commit d653134a5a

View File

@@ -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 . ';';
}
}