From 5f7bbd1b6b399d85ddc1bf3125e1cd6c17357c2d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Je=CC=81re=CC=81my=20Fabre?= Date: Thu, 15 Sep 2016 12:55:41 +0200 Subject: [PATCH] Fix the yellow button style --- app/static/src/sass/global/_buttons.scss | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/static/src/sass/global/_buttons.scss b/app/static/src/sass/global/_buttons.scss index 456c6dd7..393df9be 100755 --- a/app/static/src/sass/global/_buttons.scss +++ b/app/static/src/sass/global/_buttons.scss @@ -14,6 +14,7 @@ $module: ".button"; font-weight: weight(light); background: $color-main; + color: $color-black; display: inline-block; vertical-align: middle; cursor: pointer; @@ -21,10 +22,10 @@ $module: ".button"; @include transition(all 0.25s ease-in-out); &:hover { - background: black; - color: $color-main; + background: $color-black; + color: white; a { - color: $color-main; + color: white; } } -- 2.39.5