style: dont add unnecessary space

This commit is contained in:
Lewis Crichton 2023-09-07 16:07:45 +01:00
parent b350087a7a
commit a939034bc1
No known key found for this signature in database

View file

@ -78,7 +78,7 @@ async function initThemes() {
normalizedValue = `${normalizedValue}${meta.units ?? ""}`; normalizedValue = `${normalizedValue}${meta.units ?? ""}`;
} }
cssVars.push(`--${id}: ${normalizedValue};`); cssVars.push(`--${id}:${normalizedValue};`);
} }
} }