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

Merge pull request #73 from frobinsonj/fix-color-custom-properties

Fix color custom properties
This commit is contained in:
Muhamad Nauval Azhar
2019-07-12 17:00:40 +07:00
committed by GitHub

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 {