test inlining

This commit is contained in:
Bruno Rybársky 2024-02-04 10:48:07 +01:00
parent d94a66ca2b
commit 1ab5b5dc7c

@ -53,10 +53,7 @@ function minifyCss($css) {
$css = str_replace(';}', '}', $css); $css = str_replace(';}', '}', $css);
// Remove spaces around colons // Remove spaces around colons
$css = str_replace(': ', ':', $css); $css = str_replace(' ', '', $css);
// Remove spaces around commas
$css = str_replace(', ', ',', $css);
return trim($css); return trim($css);
} }