1
0
mirror of https://github.com/stisla/stisla.git synced 2025-08-31 03:50:11 +02:00

Fix color custom properties

This commit is contained in:
Freddy
2019-07-12 09:30:14 +01:00
committed by GitHub
parent fbb1a4a61d
commit 20df61670e

View File

@@ -2,14 +2,14 @@
:root {
/* Colors */
--primary: color(primary);
--secondary: color(fontdark);
--success: color(success);
--info: color(info);
--warning: color(warning);
--danger: color(danger);
--light: color(light);
--dark: color(dark);
--primary: #{color(primary)};
--secondary: #{color(fontdark)};
--success: #{color(success)};
--info: #{color(info)};
--warning: #{color(warning)};
--danger: #{color(danger)};
--light: #{color(light)};
--dark: #{color(dark)};
}
body, html {