Vulcan/packages/base-styles/lib/stylesheets/_header.scss

34 lines
449 B
SCSS
Raw Normal View History

2016-03-25 10:45:28 +09:00
.header-wrapper{
2016-03-25 11:30:01 +09:00
background: $header-bg;
2016-03-25 10:45:28 +09:00
margin-bottom: $vmargin;
2016-03-25 11:22:35 +09:00
}
.header{
@include flex-center;
justify-content: space-between;
padding: $vmargin 0;
}
.logo{
display: flex;
align-items: baseline;
.logo-text{
margin-right: $hmargin;
}
.logo-image{
margin-right: $hmargin;
}
.tagline{
font-size: 1.35rem;
}
}
.nav{
@include flex-center;
.nav-user{
margin-right: $hmargin;
}
.nav-new-post{
}
2016-03-25 10:45:28 +09:00
}