feature/pagina-de-produto #1

Merged
EleonoraOtz merged 21 commits from feature/pagina-de-produto into master 2023-02-03 20:04:20 +00:00
2 changed files with 42 additions and 2 deletions
Showing only changes of commit 77ff2d6998 - Show all commits

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;
}
}
}