Fix slighly checkbox vertical alignment issue

This commit is contained in:
Juan Cruz Viotti 2016-03-01 11:33:21 -04:00
parent a871d19ef7
commit ff2a375179
2 changed files with 10 additions and 0 deletions

View File

@ -5967,3 +5967,7 @@ body {
.button-label {
margin: 0 auto 15px;
max-width: 165px; }
.checkbox input[type="checkbox"] {
position: initial;
margin-right: 2px; }

View File

@ -171,3 +171,9 @@ body {
// Keep some spacing at the sides
max-width: $btn-min-width - 5px;
}
// Fix slighly checkbox vertical alignment issue
.checkbox input[type="checkbox"] {
position: initial;
margin-right: 2px;
}