feat(pdp/breadcrumb): finished styles in fonts

This commit is contained in:
Henrique Santos Santana 2023-01-21 19:09:43 -03:00
parent f29c897da7
commit 5d4f3b6cb0
4 changed files with 56 additions and 27 deletions

View File

@ -8,6 +8,6 @@
/* Media Query M3 */
/* Grid breakpoints */
.html--pdp-breadcrumb {
width: 271.25px;
width: 100%;
padding: 0 40px;
}

View File

@ -9,16 +9,10 @@
/* Grid breakpoints */
.container {
width: 100%;
display: flex;
display: inline-flex;
flex-wrap: wrap;
}
.homeLink::before {
content: "Home";
}
.arrow {
display: block;
flex-basis: 100%;
align-items: baseline;
}
.termArrow {
@ -30,4 +24,24 @@
.term {
font-size: 0;
}
.homeLink::before {
content: "Home";
font-size: 14px;
line-height: 20.12px;
}
.arrow--1 .link {
font-size: 0;
}
.arrow--1 .link::before {
content: "Sapatos";
font-size: 14px;
line-height: 20.12px;
}
.arrow--2 .link {
font-size: 14px;
line-height: 20.12px;
}

View File

@ -1,6 +1,4 @@
$containers: ();
.html--pdp-breadcrumb {
width: 271.25px;
width: 100%;
padding: 0 40px;
}

View File

@ -1,20 +1,9 @@
.container {
width: 100%;
display: flex;
display: inline-flex;
flex-wrap: wrap;
}
.homeLink {
&::before {
content: "Home";
}
}
.arrow-1 {
}
.arrow {
display: block;
flex-basis: 100%;
align-items: baseline;
}
.termArrow {
@ -28,3 +17,31 @@
.term {
font-size: 0;
}
// manipulation fonts with before
.homeLink {
&::before {
content: "Home";
font-size: 14px;
line-height: 20.12px;
}
}
.arrow--1 {
.link {
font-size: 0;
&::before {
content: "Sapatos";
font-size: 14px;
line-height: 20.12px;
}
}
}
.arrow--2 {
.link {
font-size: 14px;
line-height: 20.12px;
}
}