Skip to content

Commit

Permalink
fix: lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Rogan committed Oct 14, 2020
1 parent cc7115f commit f4bf481
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/wmcads/assets/sass/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,13 @@ body {
// Show/hide on desktop devices only
.wmcads-hide-mobile {
@media screen and (max-width: $breakpoint-md) {
display: none!important;
display: none !important;
}
}

.wmcads-hide-desktop {
@media screen and (min-width: $breakpoint-md) {
display: none!important;
display: none !important;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/wmcads/components/button/_button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ $btn-transition: ease-in-out background-color 0.2s, ease-in-out border 0.2s;
&--secondary {
border: $btn-border-width solid get-color(primary);
color: get-color(primary);
background-color: transparent;
background-color: $white;

.wmcads-btn__icon {
fill: get-color(primary);
Expand Down

0 comments on commit f4bf481

Please sign in to comment.