style: force global font on form elements (#21705)

This commit is contained in:
Frédéric Péters 2018-02-07 19:54:31 +01:00
parent 7c88461007
commit de747e255f
2 changed files with 7 additions and 1 deletions

View File

@ -3,6 +3,11 @@ $button-cancel-color: grayscale($button-color);
$button-delete-color: #CD2026;
$button-submit-color: #215D9C;
input, select, button, textarea {
font-size: 100%;
font-family: $font-family;
}
label {
margin-bottom: 0;
}

View File

@ -2,12 +2,13 @@
@import 'utils';
$mobile-limit: 760px;
$font-family: "Open Sans", sans-serif;
/* generalities */
html, body {
margin: 0;
font-family: "Open Sans", sans-serif;
font-family: $font-family;
font-size: 12px;
background: #f2f2f2;
color: #3c3c33;