RED-9260 - Component Management UI

This commit is contained in:
Valentin Mihai 2024-08-14 12:46:50 +03:00
parent 95c273e7b2
commit 1bcd1869f0
2 changed files with 9 additions and 3 deletions

View File

@ -50,9 +50,11 @@
icon="iqser:trash"
></iqser-circle-button>
}
@if (selectedComponent?.id === component.id) {
<mat-icon class="arrow-right" svgIcon="red:arrow-right"></mat-icon>
}
<mat-icon
[class.not-visible]="selectedComponent?.id !== component.id"
class="arrow-right"
svgIcon="red:arrow-right"
></mat-icon>
</div>
</div>
</div>

View File

@ -38,6 +38,10 @@
.arrow-right {
transform: scale(0.7);
&.not-visible {
visibility: hidden;
}
}
}
}