Closed derick-montague closed 5 years ago
app/common/styles/base/buttons.scss Line: 58 - 63
app/common/styles/base/buttons.scss
&:hover { background: $lightbg__accent; cursor: pointer; background: $secbtn__bg; @include fastTransition-all; }
[ ] There are two declarations in the CSS rule with the .btn-secondary:hover selector. Remove the following declarationbackground: $lightbg__accent
.btn-secondary:hover
background: $lightbg__accent
[ ] Add a color to override the #fff that bootstrap sets. Should use $secbtn__text
#fff
$secbtn__text
@derick-montague
can you elaborate on "There are two declarations in the CSS rule with the .btn-secondary:hover selector. Remove the following declarationbackground: $lightbg__accent" ?
File
app/common/styles/base/buttons.scss
Line: 58 - 63Issue
[ ] There are two declarations in the CSS rule with the
.btn-secondary:hover
selector. Remove the following declarationbackground: $lightbg__accent
[ ] Add a color to override the
#fff
that bootstrap sets. Should use$secbtn__text
As Is
To Be