feature/body #1

Merged
naianfelix merged 10 commits from feature/body into master 2023-02-11 04:42:42 +00:00
5 changed files with 45 additions and 5 deletions
Showing only changes of commit 129f489430 - Show all commits

View File

@ -16,6 +16,7 @@
"children": [
"product-summary-image#shelf",
"product-summary-name",
"product-summary-space",
"product-list-price#summary",
"product-selling-price#summary"
]

View File

@ -20,9 +20,25 @@
}
.sliderLayoutContainer .sliderRightArrow .caretIcon,
.sliderLayoutContainer .sliderLeftArrow .caretIcon {
width: 15px;
display: none;
}
.sliderLayoutContainer .sliderLeftArrow::after {
content: "";
display: block;
background-image: url("data:image/svg+xml,%3Csvg width='12' height='31' viewBox='0 0 12 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.000193945 15.2383L10.9291 30.1191L11.2002 27.7468L2.30458 15.2383L11.2002 2.89145L10.9291 0.519139L0.000193945 15.2383Z' fill='black'/%3E%3C/svg%3E%0A");
background-repeat: no-repeat;
background-size: 100% 100%;
width: 11px;
height: 30px;
}
.sliderLayoutContainer .sliderRightArrow::after {
content: "";
display: block;
background-image: url("data:image/svg+xml,%3Csvg width='12' height='31' viewBox='0 0 12 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.9998 15.4004L1.07091 0.519531L0.799804 2.89184L9.69542 15.4004L0.799802 27.7472L1.07091 30.1195L11.9998 15.4004Z' fill='black'/%3E%3C/svg%3E ");
background-repeat: no-repeat;
background-size: 100% 100%;
width: 11px;
height: 30px;
background-size: cover;
}
.sliderLayoutContainer .paginationDotsContainer {
display: flex;

View File

@ -0,0 +1,3 @@
<svg width="12" height="31" viewBox="0 0 12 31" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.9998 15.4004L1.07091 0.519531L0.799804 2.89184L9.69542 15.4004L0.799802 27.7472L1.07091 30.1195L11.9998 15.4004Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 245 B

View File

@ -0,0 +1,3 @@
<svg width="12" height="31" viewBox="0 0 12 31" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.000193943 15.2383L10.9291 30.1191L11.2002 27.7468L2.30458 15.2383L11.2002 2.89145L10.9291 0.519138L0.000193943 15.2383Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 251 B

View File

@ -8,11 +8,28 @@
margin: 0;
padding: 0;
.caretIcon {
width: 15px;
height: 30px;
background-size: cover;
display: none;
}
}
.sliderLeftArrow::after {
content: "";
display: block;
background-image: url("data:image/svg+xml,%3Csvg width='12' height='31' viewBox='0 0 12 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.000193945 15.2383L10.9291 30.1191L11.2002 27.7468L2.30458 15.2383L11.2002 2.89145L10.9291 0.519139L0.000193945 15.2383Z' fill='black'/%3E%3C/svg%3E%0A");
background-repeat: no-repeat;
background-size: 100% 100%;
width: 11px;
height: 30px;
}
.sliderRightArrow::after {
content: "";
display: block;
background-image: url("data:image/svg+xml,%3Csvg width='12' height='31' viewBox='0 0 12 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.9998 15.4004L1.07091 0.519531L0.799804 2.89184L9.69542 15.4004L0.799802 27.7472L1.07091 30.1195L11.9998 15.4004Z' fill='black'/%3E%3C/svg%3E ");
background-repeat: no-repeat;
background-size: 100% 100%;
width: 11px;
height: 30px;
}
.paginationDotsContainer {
display: flex;
align-items: center;