feat:breadcrumb estilizado

This commit is contained in:
Gustavo Rallenson Gonçalves Da Silva 2023-01-27 01:35:12 -03:00
parent 106d7600ec
commit 4c54494242
9 changed files with 54 additions and 12 deletions

View File

@ -1 +1,2 @@
CHANGELOG.md
Todo.md

View File

@ -5,6 +5,7 @@
"condition-layout.product#availability",
"flex-layout.row#description",
"flex-layout.row#specifications-title",
"example-component",
"product-specification-group#table",
"shelf.relatedProducts",
"product-questions-and-answers"
@ -91,7 +92,7 @@
"desktop": "auto",
"phone": "16:9"
},
"displayThumbnailsArrows": true
"displayThumbnailsArrows": false
}
},
"flex-layout.col#right-col": {

View File

@ -0,0 +1,15 @@
/*
0 - 600PX: Phone
600 - 900px: Table portrait
900 - 1200px: Tablet landscape
[1200 - 1800] is where our nortal styles apply
1800px + : Big desktop
*/
/* Media Query M3 */
/* Grid breakpoints */
.container .homeLink::before {
content: "HOME";
}
.container .homeLink .homeIcon {
display: none;
}

View File

@ -1,10 +1,12 @@
.stackItem--product {
width: 100%;
min-height: 257px
}
.stackItem--quickview {
right: 0;
top: 0;
left: auto;
/*
0 - 600PX: Phone
600 - 900px: Table portrait
900 - 1200px: Tablet landscape
[1200 - 1800] is where our nortal styles apply
1800px + : Big desktop
*/
/* Media Query M3 */
/* Grid breakpoints */
.stackItem {
display: block;
}

View File

@ -42,3 +42,8 @@
.newsletter {
background: black;
}
.carouselGaleryThumbs {
background: pink;
flex-direction: row;
}

View File

@ -0,0 +1,10 @@
.container{
.homeLink{
&::before{
content: "HOME";
}
.homeIcon{
display: none;
}
}
}

View File

@ -0,0 +1,3 @@
.stackItem{
display: block;
}

View File

@ -47,3 +47,8 @@
.newsletter{
background: black;
}
.carouselGaleryThumbs{
background: pink;
flex-direction: row;
}