Skip to content

Commit d2eaa35

Browse files
committed
Fix for proper syntax.
1 parent 92f3a28 commit d2eaa35

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"css"
1313
],
1414
"homepage": "https://www.github.com/deviscoding/buttons",
15-
"version": "1.1.3",
15+
"version": "1.1.4",
1616
"authors": [
1717
{
1818
"name": "Aaron M Jones",

scss/_buttons-mixins.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@
6262
}
6363
&:hover {
6464
@if($background != $hover-background) { background-color: $hover-background; }
65-
@if($hover-border != $border && $btn-border-width > 0) { border-color: $hover-border; }
65+
@if($hover-border != $border and $btn-border-width > 0) { border-color: $hover-border; }
6666
color: $hover-color;
6767
}
6868
.active > &, &.active {
6969
@if($background != $active-background) { background-color: $active-background; }
70-
@if($active-border != $border && $btn-border-width > 0) { border-color: $active-border; }
70+
@if($active-border != $border and $btn-border-width > 0) { border-color: $active-border; }
7171
color: $active-color;
7272
}
7373
&:focus {

0 commit comments

Comments
 (0)