Merged PR 679: #1664 Bestellart Icons und Wording angepasst

#1664 Bestellart Icons und Wording angepasst

Related work items: #1664
This commit is contained in:
Andreas Schickinger
2021-05-19 19:38:42 +00:00
committed by Lorenz Hilpert
parent 26308847d1
commit 5143e13ebe
2 changed files with 10 additions and 12 deletions

View File

@@ -50,24 +50,24 @@
[ngSwitch]="orderItem.data.features.orderType"
>
<div *ngSwitchCase="'Rücklage'" class="order-category">
<img class="img" class="bag" src="/assets/images/Take_now.svg" alt="bag" />
<ui-icon class="icon" icon="shopping_bag" size="18px"></ui-icon>
<h2>Rücklage</h2>
</div>
<div *ngSwitchCase="'Abholung'" class="order-category">
<img class="img" class="package" src="/assets/images/Package_Icon.svg" alt="package" />
<h2>Abholfach</h2>
<ui-icon class="icon" icon="box_out" size="18px"></ui-icon>
<h2>Abholung</h2>
</div>
<div #download *ngSwitchCase="'Download'" class="order-category">
<img class="img download" src="/assets/images/download-type.svg" alt="download" />
<ui-icon class="icon" icon="download" size="18px"></ui-icon>
<h2>Download</h2>
</div>
<div *ngSwitchCase="'Versand'" class="order-category">
<img class="img" class="truck" src="/assets/images/truck_Icon.svg" alt="truck" />
<ui-icon class="icon" icon="truck" size="30px"></ui-icon>
<h2>Versand</h2>
</div>
<div *ngSwitchCase="'B2B Versand'" class="order-category">
<ui-icon class="icon" icon="truck_b2b"></ui-icon>
<h2>B2B Versand</h2>
<div *ngSwitchCase="'B2B-Versand'" class="order-category">
<ui-icon class="icon" icon="truck_b2b" size="42px"></ui-icon>
<h2>B2B-Versand</h2>
</div>
<div class="line"></div>
</ng-container>

View File

@@ -13,10 +13,8 @@
.order-category {
@apply flex flex-row items-center mt-5;
img {
@apply mr-4;
width: 20px;
height: 20px;
.icon {
@apply mr-4 text-ucla-blue;
}
}