ptut-vhost/webpack/scss/header.scss

21 lines
329 B
SCSS
Raw Normal View History

@import 'constants';
#HEADER{
display: flex;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: calc( #{$header-height} - 1px );
background-color: $header-bg;
border-bottom: 1px solid #e3e7eb;
// flex properties
flex-direction: row;
justify-content: space-around;
align-items: center;
z-index: 150;
}