Skip to content

Commit

Permalink
regular size of form control
Browse files Browse the repository at this point in the history
By default this version of bootstrap adds a 14px font-size to form elements. It also hard codes a size. On iOS small form elements gets zoomed in until they're over 16px. That means that for a size difference that you can barely see, a zoom out needs to be done after entering the date.

fixes #230
  • Loading branch information
Haroenv committed Oct 10, 2016
1 parent 3575063 commit 36a8eb6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions public/app/sass/_shame.scss
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,11 @@ a.bounceIn.ng-hide-remove {
.label-lg {
font-size: 1.5em;
}

// override default form control
// otherwise this is too small according to iOS
// and it zooms in.
.form-control {
font-size: 16px !important;
height: initial !important;
}

0 comments on commit 36a8eb6

Please sign in to comment.