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 09:42:15 +0100 |
commit | 5ef2a232c9f8701531419f6d8ac8ebcfc4d21fc6 (patch) | |
tree | 5596d0aa7ed1e5a5ab3da4b8247da18d257025b5 /src | |
parent | 907b806e3659b1756fc226f975a4619a3fb65bba (diff) |
BUGFIX Correct errors on scss
Diffstat (limited to 'src')
-rw-r--r-- | src/styles/main.scss | 4 | ||||
-rw-r--r-- | src/styles/portrait.scss | 2 |
2 files changed, 3 insertions, 3 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 { diff --git a/src/styles/portrait.scss b/src/styles/portrait.scss index 8c1502d..eff553c 100644 --- a/src/styles/portrait.scss +++ b/src/styles/portrait.scss @@ -6,7 +6,7 @@ body { .center { - width: : 100%; + width: 100%; } } }
\ No newline at end of file |