38 lines
636 B
SCSS
38 lines
636 B
SCSS
|
@charset "utf-8";
|
||
|
|
||
|
@import "../initial";
|
||
|
.breadcrumb-wrap{
|
||
|
@media(min-width: 820px){
|
||
|
// padding-right: 0.9375em!important;
|
||
|
// padding-left: 0.9375em!important;
|
||
|
}
|
||
|
}
|
||
|
.breadcrumb {
|
||
|
@media(max-width: 768px){
|
||
|
padding: 0;
|
||
|
}
|
||
|
margin-left: 0;
|
||
|
margin-bottom: 0;
|
||
|
background-color:transparent;
|
||
|
a:link, a:visited { color: $theme-color-main; }
|
||
|
}
|
||
|
.breadcrumb>li+li:before {
|
||
|
color: $theme-color-main;
|
||
|
}
|
||
|
.widget-breadcrumb {
|
||
|
&.widget1 {
|
||
|
li {
|
||
|
a {
|
||
|
font-size: 1rem;
|
||
|
}
|
||
|
|
||
|
&:last-child {
|
||
|
a {
|
||
|
color: $theme-color-main;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|