We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00050ed commit 9492035Copy full SHA for 9492035
src/app/layouts/accordion/accordion-sample-3/accordion-sample-3.component.html
@@ -33,14 +33,14 @@
33
</igx-expansion-panel-header>
34
<igx-expansion-panel-body>
35
@for (item of [].constructor(4); track item; let i = $index) {
36
- <div>
+ <div style="display:flex; gap: 4px; align-items: center;">
37
@if (i===0) {
38
<igx-radio [(ngModel)]="rating" [value]="i+1 + ' star or more'"> {{ i + 1 }} star or more</igx-radio>
39
}
40
@if (i>0) {
41
<igx-radio [(ngModel)]="rating" [value]="i+1 + ' stars or more'"> {{ i + 1 }} stars or more</igx-radio>
42
43
- <div style="display:inline-flex;">
+ <div style="display:inline-flex; padding-top: 4px">
44
@for (fillStar of [].constructor(i + 1); track fillStar) {
45
<div>
46
<igx-icon>star</igx-icon>
0 commit comments