From ea45eb852d2558172a6e2a14e82bbf3e027c18f7 Mon Sep 17 00:00:00 2001 From: connors Date: Mon, 31 Mar 2014 18:26:13 -0700 Subject: [PATCH] make input-rows have the same height as inputs. --- sass/forms.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sass/forms.scss b/sass/forms.scss index 176a7f0..254160d 100644 --- a/sass/forms.scss +++ b/sass/forms.scss @@ -92,6 +92,7 @@ select { // To use labels with input groups, wrap a label and an input in an .input-row .input-row { overflow: hidden; + height: 35px; // Matches the height of inputs. border-bottom: $border-default; } @@ -99,7 +100,7 @@ select { .input-row label { float: left; width: 35%; - padding: 10px 15px; + padding: 8px 15px; font-family: $font-family-default; line-height: 1.1; // Put the text on the baseline. }