woocommerce/plugins/woocommerce-admin/client/layout/header/style.scss

56 lines
890 B
SCSS
Raw Normal View History

/** @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 $gray;
padding: 0px;
height: 80px;
position: fixed;
width: 100%;
top: 32px;
z-index: 1000;
@include breakpoint( '<782px' ) {
top: 46px;
height: 47px;
flex-flow: row wrap;
}
@include breakpoint( '782px-1100px' ) {
height: 60px;
}
.woocommerce-layout__header-breadcrumbs {
font-size: 13px;
font-weight: normal;
padding: 0px;
margin-left: $spacing;
flex: 1 auto;
padding-top: 8px;
@include breakpoint( '782px-1100px' ) {
padding-top: 16px;
}
@include breakpoint( '>1100px' ) {
padding-top: 24px;
}
span + span::before {
content: ' / ';
color: $gray-text;
margin: 0 2px 0 2px;
}
a {
color: $woocommerce;
}
}
}