66 lines
1.0 KiB
SCSS
66 lines
1.0 KiB
SCSS
/** @format */
|
|
|
|
.woocommerce-layout__header {
|
|
background: $white;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-direction: row;
|
|
box-sizing: border-box;
|
|
background: $white;
|
|
border-bottom: 1px solid $white;
|
|
padding: 0px;
|
|
height: 80px;
|
|
position: fixed;
|
|
width: 100%;
|
|
top: 32px;
|
|
z-index: 1000;
|
|
|
|
&.is-scrolled {
|
|
box-shadow: 0 8px 8px 0 rgba(85, 93, 102, 0.3);
|
|
}
|
|
|
|
@include breakpoint( '<782px' ) {
|
|
top: 46px;
|
|
height: 50px;
|
|
flex-flow: row wrap;
|
|
}
|
|
|
|
@include breakpoint( '782px-1100px' ) {
|
|
height: 60px;
|
|
}
|
|
|
|
.woocommerce-layout__header-breadcrumbs {
|
|
font-size: 13px;
|
|
font-weight: normal;
|
|
padding: 0px;
|
|
flex: 1 auto;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
background: $white;
|
|
|
|
@include breakpoint( '782px-1100px' ) {
|
|
height: 60px;
|
|
line-height: 60px;
|
|
}
|
|
|
|
@include breakpoint( '>1100px' ) {
|
|
height: 80px;
|
|
line-height: 80px;
|
|
}
|
|
|
|
span:first-child {
|
|
padding-left: $spacing;
|
|
}
|
|
|
|
span + span::before {
|
|
content: ' / ';
|
|
color: $gray-text;
|
|
margin: 0 2px 0 2px;
|
|
}
|
|
|
|
a {
|
|
color: $woocommerce;
|
|
}
|
|
}
|
|
}
|