Skip to content

Commit

Permalink
Ensure that .form-block is cleared
Browse files Browse the repository at this point in the history
As it sits between radio or checkbox options, use float: left; clear:
left as .multiple-choice elements are floated.
  • Loading branch information
gemmaleigh committed Jun 6, 2017
1 parent 960092e commit 2248c42
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion assets/sass/elements/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ textarea {

// Used for the 'or' in between block label options
.form-block {
@extend %contain-floats;
float: left;
clear: left;

margin-top: -5px;
margin-bottom: 5px;
Expand Down

0 comments on commit 2248c42

Please sign in to comment.