feat: enhance return details component with dynamic pricing and improved layout; add new price and VAT schemas

This commit is contained in:
Lorenz Hilpert
2025-03-13 16:01:36 +01:00
parent 1a4d0a38da
commit 39e4efff2b
10 changed files with 118 additions and 18 deletions

View File

@@ -1,3 +1,30 @@
.ui-item-row {
@apply grid grid-cols-[3.5rem,repeat(2,1fr),auto] gap-4;
display: grid;
gap: 1.5rem;
padding-bottom: 1.5rem;
grid-template-columns: 3.5rem 1fr auto;
grid-template-areas:
"image title checkbox"
". info .";
@screen isa-desktop-l {
grid-template-columns: 3.5rem 1fr 1fr auto;
grid-template-areas: "image title info checkbox";
}
[uiItemRowProdcutImage] {
grid-area: image;
}
[uiItemRowProdcutTitle] {
grid-area: title;
}
[uiItemRowProdcutInfo] {
grid-area: info;
}
[uiItemRowProdcutCheckbox] {
grid-area: checkbox;
}
}