components/form/RadioGroup.vue: fix row mode

When using <RadioGroup row>, we need the CSS to match on
`.radio-group.row` (that is, one element with both classes) rather than
matching on `.radio-group .row` (an element that is the descendant of
another).
This commit is contained in:
Mark Yen 2021-01-21 17:22:45 -08:00
parent 87da43540e
commit 5aecf7a5d0
No known key found for this signature in database
GPG Key ID: 0341CC878854CFC1
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ export default {
position: relative;
}
.row {
&.row {
display: flex;
.radio-container {
margin-right: 10px;