Merged PR 1105: #2773 Listenbestellung derzeit nicht bestellbar Farbe angepasst

#2773 Listenbestellung derzeit nicht Bestellbar Farbe angepasst

Related work items: #2773
This commit is contained in:
Andreas Schickinger
2022-03-15 10:17:02 +00:00
committed by Lorenz Hilpert
parent 8f7448a095
commit 722ed6ade6
2 changed files with 5 additions and 1 deletions

View File

@@ -69,7 +69,7 @@
<div class="fetching" *ngIf="fetchingAvailabilities$ | async; else availabilities"></div>
<ng-template #availabilities>
<ng-container *ngIf="notAvailable$ | async; else available">
<span>Derzeit nicht bestellbar</span>
<span class="hint">Derzeit nicht bestellbar</span>
</ng-container>
<ng-template #available>

View File

@@ -168,3 +168,7 @@
}
}
}
.hint {
@apply text-dark-goldenrod font-bold;
}