diff options
| author | Eric Sherman <easherma@users.noreply.github.com> | 2018-05-21 19:23:49 -0500 |
|---|---|---|
| committer | Shawn Erquhart <shawn@erquh.art> | 2018-05-21 20:23:49 -0400 |
| commit | 7d399bc040dc3d591dfcfc6b4ff3c28158042ecf (patch) | |
| tree | 2b444b5980235265be6b65bc7a49b2d41645a7e7 | |
| parent | 4042cef1223af03daa537ecd15cb6b43341ef76b (diff) | |
Update _colors.css (#22)
Highlight color was not applying as expected in my project and this appears to be the cause.
| -rwxr-xr-x | src/css/imports/_colors.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/css/imports/_colors.css b/src/css/imports/_colors.css index f13fe57..5a2d067 100755 --- a/src/css/imports/_colors.css +++ b/src/css/imports/_colors.css @@ -5,7 +5,7 @@ } .highlight { - color: --var(--highlight); + color: var(--highlight); } .white { @@ -41,7 +41,7 @@ } .bg-highlight { - background-color: --var(--highlight); + background-color: var(--highlight); } .bg-white { |
