2018-05-14 13:41:30 +00:00
|
|
|
/** @format */
|
|
|
|
|
2018-06-28 13:52:45 +00:00
|
|
|
.woocommerce-layout__header {
|
2018-05-14 13:41:30 +00:00
|
|
|
background: $white;
|
2018-05-10 18:35:55 +00:00
|
|
|
display: flex;
|
2018-05-18 17:31:08 +00:00
|
|
|
justify-content: space-between;
|
2018-05-10 18:35:55 +00:00
|
|
|
flex-direction: row;
|
|
|
|
box-sizing: border-box;
|
2018-05-14 13:41:30 +00:00
|
|
|
background: $white;
|
|
|
|
border-bottom: 1px solid $gray;
|
2018-07-06 12:40:05 +00:00
|
|
|
padding: 0px;
|
2018-06-29 15:20:08 +00:00
|
|
|
height: 80px;
|
2018-06-28 13:52:45 +00:00
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
top: 32px;
|
|
|
|
z-index: 1000;
|
2018-05-10 18:35:55 +00:00
|
|
|
|
2018-06-29 15:20:08 +00:00
|
|
|
@include breakpoint( '<782px' ) {
|
|
|
|
top: 46px;
|
|
|
|
height: 47px;
|
2018-07-06 12:40:05 +00:00
|
|
|
flex-flow: row wrap;
|
2018-06-29 15:20:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint( '782px-1100px' ) {
|
|
|
|
height: 60px;
|
|
|
|
}
|
|
|
|
|
2018-06-28 13:52:45 +00:00
|
|
|
.woocommerce-layout__header-breadcrumbs {
|
2018-05-10 18:35:55 +00:00
|
|
|
font-size: 13px;
|
2018-06-26 14:49:42 +00:00
|
|
|
font-weight: normal;
|
2018-07-06 12:40:05 +00:00
|
|
|
padding: 0px;
|
|
|
|
margin-left: $spacing;
|
|
|
|
flex: 1 auto;
|
|
|
|
|
|
|
|
padding-top: 8px;
|
|
|
|
|
|
|
|
@include breakpoint( '782px-1100px' ) {
|
|
|
|
padding-top: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint( '>1100px' ) {
|
|
|
|
padding-top: 24px;
|
|
|
|
}
|
2018-05-10 18:35:55 +00:00
|
|
|
|
|
|
|
span + span::before {
|
|
|
|
content: ' / ';
|
2018-05-14 13:41:30 +00:00
|
|
|
color: $gray-text;
|
2018-06-26 14:49:42 +00:00
|
|
|
margin: 0 2px 0 2px;
|
2018-05-10 18:35:55 +00:00
|
|
|
}
|
2018-07-06 12:40:05 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: $woocommerce;
|
|
|
|
}
|
2018-05-10 18:35:55 +00:00
|
|
|
}
|
2018-05-14 13:41:30 +00:00
|
|
|
}
|