mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
Merged PR 1845: feat(shared-product-info): add shared product info module and initial impleme...
feat(shared-product-info): add shared product info module and initial implementation Introduce a new shared module for product information, providing reusable components and services for displaying product details across the application. This module is designed for consistency and maintainability, following project guidelines for modularization and type safety. Ref: #5065
This commit is contained in:
committed by
Lorenz Hilpert
parent
543de57190
commit
7743150652
@@ -12,20 +12,20 @@
|
||||
/>
|
||||
<div class="return-product-info__content">
|
||||
<div
|
||||
class="return-product-info__contributors isa-text-body-2-bold"
|
||||
class="return-product-info__contributors isa-text-body-2-bold text-isa-neutral-900"
|
||||
data-what="product-contributors"
|
||||
>
|
||||
{{ product().contributors }}
|
||||
</div>
|
||||
<div
|
||||
class="return-product-info__name isa-text-body-2-regular"
|
||||
class="return-product-info__name isa-text-body-2-regular text-isa-neutral-900"
|
||||
data-what="product-name"
|
||||
>
|
||||
{{ product().name }}
|
||||
</div>
|
||||
<div class="return-product-info__format" data-what="product-format">
|
||||
<ng-icon [name]="product().format | lowercase"></ng-icon>
|
||||
<span>{{ product().formatDetail }}</span>
|
||||
<span class="text-isa-secondary-900">{{ product().formatDetail }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
.return-product-info {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 1rem;
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
||||
.return-product-info__image {
|
||||
|
||||
Reference in New Issue
Block a user