Skip to content

Commit

Permalink
Remove rounded corners for form inputs and textareas in iOS
Browse files Browse the repository at this point in the history
Remove rounded corners for inputs and textarea elements using the
.form-control class.

Also set -webkit-appearance: none; to remove the inner shadow on these
elements.
  • Loading branch information
gemmaleigh committed Oct 27, 2016
1 parent 5b89b38 commit c47849c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions public/sass/elements/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,14 @@ textarea {

}

input.form-control,
textarea.form-control {
// Remove inner shadow
-webkit-appearance: none;
// Remove rounded corners
border-radius: 0;
}

// Radio buttons
.form-radio {
display: block;
Expand Down

0 comments on commit c47849c

Please sign in to comment.