Skip to content

Commit

Permalink
Fixed radio option wrapping bug (#1372)
Browse files Browse the repository at this point in the history
  • Loading branch information
ushahidlee authored and tuxpiper committed Feb 18, 2025
1 parent adc5b3e commit 8a29f4f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@
[labelPlacement]="type === 'default' ? 'end' : 'start'"
[justify]="justify"
>
<ng-content></ng-content>
<span class="radio-item-wrap">
<ng-content></ng-content>
</span>
</ion-radio>
</ion-item>
</ng-template>
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@
//margin: 10px 18px 10px 10px;
}

.radio-item-wrap {
white-space: normal;
}

&::ng-deep {
.info {
display: block;
Expand Down

0 comments on commit 8a29f4f

Please sign in to comment.