feat: Estiliza breadcrumb desktop

This commit is contained in:
Eleonora Otz de Mendonça Soares 2023-01-23 23:10:03 -03:00
parent 6cebda38f4
commit 77ff2d6998
2 changed files with 42 additions and 2 deletions

View File

@ -7,7 +7,25 @@
*/
/* Media Query M3 */
/* Grid breakpoints */
.container .link {
.container {
margin: 8px 40px;
}
.container .link,
.container .term {
font-size: 14px;
line-height: 19px;
color: #929292;
}
.container .homeIcon {
display: none;
}
.container .link::after {
content: "Home";
font-size: 14px;
line-height: 19px;
color: #929292;
}
.container .link--1::after,
.container .link--2::after {
display: none;
}

View File

@ -1,6 +1,28 @@
.container {
.link {
margin: 8px 40px;
.link,
.term {
font-size: 14px;
line-height: 19px;
color: $gray-500;
}
.homeIcon {
display: none;
}
.link::after {
content: "Home";
font-size: 14px;
line-height: 19px;
color: $gray-500;
}
.link--1,
.link--2 {
&::after {
display: none;
}
}
}