1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-29 08:10:47 +02:00

Revamp button and input vars while fixing #21587 (#22287)

This commit is contained in:
Mark Otto
2017-03-28 09:28:27 -07:00
committed by GitHub
parent 904efc043d
commit 296c99020c
6 changed files with 56 additions and 59 deletions

View File

@@ -79,8 +79,9 @@
}
// Button sizes
@mixin button-size($padding-y, $padding-x, $font-size, $border-radius) {
@mixin button-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
padding: $padding-y $padding-x;
font-size: $font-size;
line-height: $line-height;
@include border-radius($border-radius);
}