mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
only apply right margin to radio input
fixes #1101. I wanted to apply a custom class to the input, however that is unfortunately obscured and unreachable with our current implementation of `formsy-react-components`
This commit is contained in:
parent
3f1c9dcccb
commit
ba50840809
1 changed files with 3 additions and 3 deletions
|
@ -62,10 +62,10 @@
|
|||
&.demographics-step {
|
||||
.radio {
|
||||
margin: 1.5rem 1.5rem 0 0;
|
||||
}
|
||||
|
||||
input {
|
||||
margin-right: 1rem;
|
||||
}
|
||||
input[type="radio"] {
|
||||
margin-right: 1rem;
|
||||
}
|
||||
|
||||
.demographics-step-input-other {
|
||||
|
|
Loading…
Reference in a new issue