aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElvis Ratzlaff <[email protected]>2013-08-03 03:56:06 -0400
committerElvis Ratzlaff <[email protected]>2013-08-03 03:56:06 -0400
commit2fd8689b08ecef4f2d1efa5d1e1edede21d2403f (patch)
tree0743a2d09f3e3f363cf26d8be5359cb68efc2be9
parent4bac2c567a139958cb2ff35f7ad30c7dcd8527a3 (diff)
downloadbootstrap-2fd8689b08ecef4f2d1efa5d1e1edede21d2403f.tar.xz
bootstrap-2fd8689b08ecef4f2d1efa5d1e1edede21d2403f.zip
Change line-height value with variable for btn-large and btn-small
-rw-r--r--less/buttons.less4
1 files changed, 2 insertions, 2 deletions
diff --git a/less/buttons.less b/less/buttons.less
index 8905ffa4a..e53b0132f 100644
--- a/less/buttons.less
+++ b/less/buttons.less
@@ -123,14 +123,14 @@
.btn-large {
padding: @padding-large-vertical @padding-large-horizontal;
font-size: @font-size-large;
- line-height: 1.33; // ensure even-numbered height of button next to large input
+ line-height: @line-height-large; // ensure even-numbered height of button next to large input
border-radius: @border-radius-large;
}
.btn-small,
.btn-mini {
padding: @padding-small-vertical @padding-small-horizontal;
font-size: @font-size-small;
- line-height: 1.5; // ensure proper height of button next to small input
+ line-height: @line-height-small; // ensure proper height of button next to small input
border-radius: @border-radius-small;
}
.btn-mini {