mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-05-15 15:43:10 +00:00
Fixes off-by-1px between checkbox and form label (all browsers)
This commit is contained in:
parent
b7f22e27ec
commit
c13de3db60
1 changed files with 1 additions and 1 deletions
|
|
@ -162,7 +162,7 @@ input[type=hidden] {
|
||||||
// Move the options list down to align with labels
|
// Move the options list down to align with labels
|
||||||
.controls > .radio:first-child,
|
.controls > .radio:first-child,
|
||||||
.controls > .checkbox:first-child {
|
.controls > .checkbox:first-child {
|
||||||
padding-top: 6px; // has to be padding because margin collaspes
|
padding-top: 5px; // has to be padding because margin collaspes
|
||||||
}
|
}
|
||||||
|
|
||||||
// Radios and checkboxes on same line
|
// Radios and checkboxes on same line
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue