Swapped input-lg and input-sm

Fixing my own error. Thanks to @kyleledbetter for reporting.
This commit is contained in:
Guillermo González de Agüero 2013-08-13 23:31:33 +02:00
parent a2475f0145
commit f0ee3aaac0
1 changed files with 2 additions and 2 deletions

View File

@ -210,11 +210,11 @@ input[type="number"] {
// Form control sizing
.input-sm {
.input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);
.input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);
}
.input-lg {
.input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);
.input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);
}