diff options
author | Gabriel Albo <gabriel@albo.com.br> | 2016-03-01 19:08:24 -0300 |
---|---|---|
committer | Gabriel Albo <gabriel@albo.com.br> | 2016-03-01 19:08:24 -0300 |
commit | da63a4c8e563a330c54ee73dcc0bc3d8c8b46fc3 (patch) | |
tree | bd76d62fb4cbed30aa14d9e0d847d2d14b704c73 /web-ui/app | |
parent | a8de59132163718fcb1fba47b5e396dcac7355b6 (diff) |
Adding sass function to lighten the logo color for the spinner
Issue #238
Diffstat (limited to 'web-ui/app')
-rw-r--r-- | web-ui/app/scss/_mixins.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/app/scss/_mixins.scss b/web-ui/app/scss/_mixins.scss index c4cc234b..4360b886 100644 --- a/web-ui/app/scss/_mixins.scss +++ b/web-ui/app/scss/_mixins.scss @@ -310,7 +310,7 @@ @mixin logo { @keyframes hideshow { - 0% { fill: #2ba6cb; } + 0% { fill: lighten($logo_color, 30); } 25% { opacity: 1; } 100% { opacity: 0; } } |