diff options
Diffstat (limited to 'darkly/_variables.scss')
-rw-r--r-- | darkly/_variables.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/darkly/_variables.scss b/darkly/_variables.scss index facfe729..45bb6a7c 100644 --- a/darkly/_variables.scss +++ b/darkly/_variables.scss @@ -201,11 +201,11 @@ $input-border-focus: #fff; $input-color-placeholder: $gray-light; //** Default `.form-control` height -$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2); +$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 4); //** Large `.form-control` height -$input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2); +$input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 4); //** Small `.form-control` height -$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2); +$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 4); //** `.form-group` margin $form-group-margin-bottom: 15px; |