We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33417fe commit 55e1c29Copy full SHA for 55e1c29
core/src/components/radio-group/radio-group.scss
@@ -8,6 +8,10 @@ ion-radio-group {
8
vertical-align: top;
9
}
10
11
+.radio-group-wrapper {
12
+ display: inline;
13
+}
14
+
15
// Radio Group: Top
16
// --------------------------------------------------
17
core/src/components/radio-group/radio-group.tsx
@@ -298,7 +298,7 @@ export class RadioGroup implements ComponentInterface {
298
Without the wrapper, the children radio will fire the blur event
299
on focus, instead of waiting for them to be blurred.
300
*/}
301
- <div>
+ <div class="radio-group-wrapper">
302
<slot></slot>
303
</div>
304
</Host>
0 commit comments