ngx-admin/src/app/@theme/components/header/header.component.scss

46 lines
778 B
SCSS
Raw Normal View History

2017-06-21 17:34:10 +03:00
@import '../../styles/variables';
@include nga-install-component() {
display: flex;
justify-content: space-between;
width: 100%;
.left {
order: 0;
flex-direction: row;
}
.right {
order: 1;
flex-direction: row-reverse;
}
.header-container {
display: flex;
align-items: center;
.navigation {
padding-right: nga-theme(padding);
2017-06-21 17:34:10 +03:00
font-size: 2.5rem;
}
.logo {
padding: 0 nga-theme(padding);
font-size: 1.75rem;
2017-06-21 17:34:10 +03:00
font-weight: nga-theme(font-weight-bolder);
border-left: 1px solid nga-theme(separator);
span {
font-weight: nga-theme(font-weight-normal);
}
}
.theme-buttons {
margin-left: 3rem;
button {
margin-right: 1rem;
}
}
}
}