Commit c13de3db authored by Pete Hopkins's avatar Pete Hopkins
Browse files

Fixes off-by-1px between checkbox and form label (all browsers)

parent b7f22e27
Showing with 1 addition and 1 deletion
+1 -1
......@@ -162,7 +162,7 @@ input[type=hidden] {
// Move the options list down to align with labels
.controls > .radio: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
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment