We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b42129e commit 556774eCopy full SHA for 556774e
src/styles/_buttons.scss
@@ -161,15 +161,15 @@ button.btn-primary {
161
162
&:hover:not(:disabled) {
163
// A slightly darker blue for hover
164
- background-color: color.adjust($blue-primary, -8%);
165
- border-color: color.adjust($blue-primary, -8%);
+ background-color: color.adjust($blue-primary, $lightness: -8%);
+ border-color: color.adjust($blue-primary, $lightness: -8%);
166
transform: translateY(-1px);
167
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
168
}
169
170
&:active:not(:disabled) {
171
transform: translateY(0);
172
- background-color: color.adjust($blue-primary, -12%);
+ background-color: color.adjust($blue-primary, $lightness: -12%);
173
174
175
&:focus {
0 commit comments