26 lines
413 B
SCSS
26 lines
413 B
SCSS
@charset "utf-8";
|
|
|
|
@import "../initial";
|
|
.breadcrumb {
|
|
background-color: #fff;
|
|
a:link, a:visited { color: $theme-color-main; }
|
|
}
|
|
.breadcrumb>li+li:before {
|
|
color: $theme-color-main;
|
|
}
|
|
.widget-breadcrumb {
|
|
&.widget1 {
|
|
li {
|
|
a {
|
|
font-size: 0.8125rem;
|
|
}
|
|
|
|
&:last-child {
|
|
a {
|
|
color: $theme-color-main;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |