DM-536 - added disabled property

This commit is contained in:
Valentin Mihai 2023-11-10 20:06:32 +02:00
parent 4b656564fe
commit 63df71a6aa
2 changed files with 5 additions and 1 deletions

View File

@ -18,5 +18,5 @@
<div *ngIf="showDot" class="dot"></div>
<div *ngIf="dropdownButton" class="arrow-down"></div>
<div *ngIf="dropdownButton" [class.disabled]="disabled" class="arrow-down"></div>
</div>

View File

@ -8,5 +8,9 @@
position: fixed;
margin-left: 12px;
margin-top: -8px;
&.disabled {
border-top-color: var(--iqser-grey-3);
}
}
}