Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.

Commit

Permalink
fix(css): override the appearance of the input (#419)
Browse files Browse the repository at this point in the history
The native appearance of the searchbar on Safari will stay 11px, while if you do `-webkit-appearance: none` it will grow appropriately
  • Loading branch information
Haroenv authored and redox committed Jul 30, 2017
1 parent 45f02c9 commit b3425ed
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/places.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
border-radius: 3px;
outline: none;
font: inherit;
appearance: none;
-webkit-appearance: none;
}

.ap-input::-webkit-search-decoration {
Expand Down

0 comments on commit b3425ed

Please sign in to comment.