This commit is contained in:
Roman Pyrih
2025-06-03 09:27:55 +02:00
parent 1038b23d23
commit e552c096ca
6 changed files with 2451 additions and 752 deletions

View File

@@ -1575,16 +1575,66 @@ body#cart {
}
td {
text-align: right;
position: relative;
padding-left: 50%;
border: none !important;
// padding-left: 0;
text-align: right;
// border: none !important;
padding: 15px 10px 15px 50% !important;
&::before {
position: absolute;
left: 10px;
top: 50%;
transform: translateY(-50%);
white-space: nowrap;
font-weight: bold;
text-align: left;
}
.product-card-qty {
display: block;
margin: 0 auto;
margin-left: auto;
width: fit-content;
}
.product-card-action {
width: fit-content;
margin-left: auto;
.remove-from-cart {
&::before {
width: 15px !important;
height: 2px !important;
}
&::after {
width: 15px !important;
height: 2px !important;
}
}
}
> div {
padding-top: 0 !important;
}
}
td:nth-child(1)::before {
content: 'Obrazek';
}
td:nth-child(2)::before {
content: 'Nazwa produktu';
}
td:nth-child(3)::before {
content: 'Cena jednostkowa';
}
td:nth-child(4)::before {
content: 'Ilość';
}
td:nth-child(5)::before {
content: 'Cena łączna';
}
td:nth-child(6)::before {
content: 'Usuń';
}
.product-card-img img {