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

56 lines
934 B
SCSS
Raw Normal View History

2017-08-03 13:53:18 +03:00
@import '../../styles/themes';
2017-06-21 17:34:10 +03:00
@include nb-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: nb-theme(padding);
2017-06-21 17:34:10 +03:00
font-size: 2.5rem;
}
.logo {
padding: 0 nb-theme(padding);
font-size: 1.75rem;
font-weight: nb-theme(font-weight-bolder);
border-left: 1px solid nb-theme(separator);
span {
font-weight: nb-theme(font-weight-normal);
}
}
.theme-buttons {
margin-left: 3rem;
button {
margin-right: 1rem;
}
}
}
2017-08-30 17:22:05 +03:00
.toggle-layout /deep/ a {
text-decoration: none;
line-height: 1;
i {
color: nb-theme(toggle-layout-color);
font-size: 1.75rem;
}
}
}