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 { :root {
/* Colors */ /* Colors */
--primary: color(primary); --primary: #{color(primary)};
--secondary: color(fontdark); --secondary: #{color(fontdark)};
--success: color(success); --success: #{color(success)};
--info: color(info); --info: #{color(info)};
--warning: color(warning); --warning: #{color(warning)};
--danger: color(danger); --danger: #{color(danger)};
--light: color(light); --light: #{color(light)};
--dark: color(dark); --dark: #{color(dark)};
} }
body, html { body, html {