mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Change line-height value with variable for btn-large and btn-small
This commit is contained in:
parent
4bac2c567a
commit
2fd8689b08
1 changed files with 2 additions and 2 deletions
|
@ -123,14 +123,14 @@
|
||||||
.btn-large {
|
.btn-large {
|
||||||
padding: @padding-large-vertical @padding-large-horizontal;
|
padding: @padding-large-vertical @padding-large-horizontal;
|
||||||
font-size: @font-size-large;
|
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;
|
border-radius: @border-radius-large;
|
||||||
}
|
}
|
||||||
.btn-small,
|
.btn-small,
|
||||||
.btn-mini {
|
.btn-mini {
|
||||||
padding: @padding-small-vertical @padding-small-horizontal;
|
padding: @padding-small-vertical @padding-small-horizontal;
|
||||||
font-size: @font-size-small;
|
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;
|
border-radius: @border-radius-small;
|
||||||
}
|
}
|
||||||
.btn-mini {
|
.btn-mini {
|
||||||
|
|
Loading…
Add table
Reference in a new issue