mirror of https://github.com/rancher/dashboard.git
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:
parent
87da43540e
commit
5aecf7a5d0
|
|
@ -170,7 +170,7 @@ export default {
|
|||
position: relative;
|
||||
}
|
||||
|
||||
.row {
|
||||
&.row {
|
||||
display: flex;
|
||||
.radio-container {
|
||||
margin-right: 10px;
|
||||
|
|
|
|||
Loading…
Reference in New Issue