Skip to content

Commit

Permalink
fix(stark-ui): change background-color of `.search-field .mat-form-fi…
Browse files Browse the repository at this point in the history
…eld-wrapper` to variable $offWh

  - `background-color: #ffff` was causing an issue in chrome 56
  - also removed duplicate code

ISSUES CLOSED: #1181
  • Loading branch information
carlo-nomes committed Apr 1, 2019
1 parent 517df61 commit 87aa706
Showing 1 changed file with 1 addition and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
.search-field {
.mat-form-field-wrapper {
border: 1px solid mat-color($grey-palette, 400);
background-color: #ffff;
background-color: #fff;
color: mat-color($grey-palette, 900);
}
}
Expand All @@ -16,14 +16,4 @@ button.search-button {
color: mat-color($grey-palette, A100);
}

@media #{$mobile-only-query} {
.search-field {
.mat-form-field-wrapper {
border: 1px solid mat-color($grey-palette, 400);
background-color: #ffff;
color: mat-color($grey-palette, 900);
}
}
}

/* END stark-ui: src/modules/route-search/components/route-search-theme.scss */

0 comments on commit 87aa706

Please sign in to comment.