Skip to content

Commit abe894c

Browse files
updated Button element
1 parent 57a0982 commit abe894c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Elements/Button/Button.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
&:focus,
6060
&:hover {
6161
color: theme('text-color');
62-
background: theme('color-secondary');
62+
background: lighten( theme('color-active'), 4%);
6363
}
6464
i, [class^="#{$icon-font-class-name}"] {
6565
color: theme('text-color');

src/Elements/Button/mixins.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,13 +312,13 @@
312312
///
313313
@mixin secondary-button() {
314314
color: theme('text-color');
315-
background-image: theme('button-secondary-bg');
315+
background: theme('button-secondary-bg');
316316
&:focus,
317317
&:hover,
318318
&:active,
319319
&.#{$button-class-active} {
320320
color: theme('text-color');
321-
background-image: theme('button-secondary-bg-hover');
321+
background: theme('button-secondary-bg-hover');
322322
z-index: 1;
323323
border-color: theme('border-color');
324324
i, [class^="#{$icon-font-class-name}"] {

0 commit comments

Comments
 (0)