Adding right margin to labels (to compensate for now-missing left margin on input fields)

This commit is contained in:
Jay Sitter
2014-10-31 09:53:01 -04:00
parent f60c9b00ab
commit 1087b3cb4e
2 changed files with 6 additions and 6 deletions

View File

@ -104,10 +104,6 @@ form input[type="text"], select, form input[type="password"], form input[type="u
}
}
fieldset label {
min-width: 12.5em;
}
.inline .row {
display: inline-block;
margin-right: 0.5em;
@ -119,10 +115,14 @@ fieldset label {
fieldset label {
display: inline-block;
margin-right: 0.5em;
min-width: 12.5em;
color: #666;
}
label {
margin-right: 0.5em;
}
form .row {
margin-bottom: 0.5em;
}