fix(radio-group): use inline div to avoid extra spacing

This commit is contained in:
Brandy Smith
2025-03-04 10:24:32 -05:00
parent 33417fe551
commit 55e1c294a5
2 changed files with 5 additions and 1 deletions

View File

@@ -8,6 +8,10 @@ ion-radio-group {
vertical-align: top;
}
.radio-group-wrapper {
display: inline;
}
// Radio Group: Top
// --------------------------------------------------

View File

@@ -298,7 +298,7 @@ export class RadioGroup implements ComponentInterface {
Without the wrapper, the children radio will fire the blur event
on focus, instead of waiting for them to be blurred.
*/}
<div>
<div class="radio-group-wrapper">
<slot></slot>
</div>
</Host>