diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-07-05 09:11:58 +0200 |
---|---|---|
committer | Lorenzo Tilve <ltilve@igalia.com> | 2020-02-04 19:12:47 +0100 |
commit | 7093bea641652ca4cddba8233d56c5968787f01b (patch) | |
tree | 5596d0aa7ed1e5a5ab3da4b8247da18d257025b5 /src/styles/main.scss | |
parent | 71129b86103f205bdf9087a509c5d75cb2bf750d (diff) |
BUGFIX Correct errors on scss
Diffstat (limited to 'src/styles/main.scss')
-rw-r--r-- | src/styles/main.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/styles/main.scss b/src/styles/main.scss index 59a7b00..d0867c4 100644 --- a/src/styles/main.scss +++ b/src/styles/main.scss @@ -42,11 +42,11 @@ progress { } ::-webkit-progress-bar { - background: #848286; + background: map-get($colors, grey); } ::-webkit-progress-value { - background-color: #00ADDC; + background-color: map-get($colors, primary); } html { |