40 lines
506 B
SCSS
40 lines
506 B
SCSS
// Breadcrumb
|
|
|
|
.container {
|
|
padding: 14px 36px;
|
|
|
|
@media screen and (min-width: 1920px) and (max-width: 2560px) {
|
|
margin: 0px 356px;
|
|
padding: 14px 0;
|
|
}
|
|
|
|
.link,
|
|
.term {
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
color: $gray-500;
|
|
}
|
|
|
|
// Home
|
|
|
|
.homeIcon {
|
|
display: none;
|
|
}
|
|
|
|
.link::after {
|
|
content: "Home";
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
color: $gray-500;
|
|
}
|
|
|
|
// Outros links
|
|
|
|
.link--1,
|
|
.link--2 {
|
|
&::after {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|