cycat-project-website/_sass/components/_header.scss

22 lines
427 B
SCSS
Raw Normal View History

2018-12-09 08:21:01 +01:00
.header {
height: 50px;
color: $primary;
background-color: #ffffff;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 1px 15px rgba(50, 50, 93, 0.2);
.container {
display: flex;
justify-content: space-between;
align-items: center;
}
.header-social {
height: inherit;
display: none;
@include media-breakpoint-up(lg) {
display: block;
}
}
}