Skip to content

Commit

Permalink
Merge pull request #58 from hacknlove/patch-1
Browse files Browse the repository at this point in the history
hardcoded #fff should be $white
  • Loading branch information
mblode authored Apr 4, 2021
2 parents c2b0068 + 6ce46ff commit a574e89
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scss/_form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@ input[type="tel"]:focus,
input[type="color"]:focus,
select:focus,
textarea:focus {
background-color: #fff;
border-color: mix($primary, #fff);
background-color: $white;
border-color: mix($primary, $white);
outline: 0;
box-shadow: 0 0 0 0.2rem fade_out($primary, 0.75);
}

input:not([type]):focus {
background-color: #fff;
border-color: mix($primary, #fff);
background-color: $white;
border-color: mix($primary, $white);
outline: 0;
box-shadow: 0 0 0 0.2rem fade_out($primary, 0.75);
}
Expand Down

0 comments on commit a574e89

Please sign in to comment.