29 lines
426 B
SCSS
29 lines
426 B
SCSS
|
@import "/styles/sass/utils/vars";
|
||
|
|
||
|
.container {
|
||
|
padding-left: 40px;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
|
||
|
.homeLink {
|
||
|
.homeIcon {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
.homeLink::before {
|
||
|
content: "Home";
|
||
|
font-size: 16px;
|
||
|
color: $color-gray6;
|
||
|
}
|
||
|
.arrow--1 {
|
||
|
.link {
|
||
|
font-size: 0;
|
||
|
}
|
||
|
.link::before {
|
||
|
content: "Sapatos";
|
||
|
font-size: 16px;
|
||
|
color: $color-gray6;
|
||
|
}
|
||
|
}
|
||
|
}
|