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

55 lines
851 B
SCSS
Raw Normal View History

2017-06-21 17:34:10 +03:00
@import '../../styles/variables';
@include nga-install-component() {
width: 100%;
display: flex;
justify-content: space-between;
div {
display: flex;
align-items: center;
& > * {
height: 100%;
display: flex;
align-items: center;
}
}
.left {
> * {
padding: 0 1.25rem;
2017-06-21 17:34:10 +03:00
border-right: 1px solid nga-theme(separator);
&:first-child {
padding-left: 0;
}
&:last-child {
border: none;
}
}
2017-06-07 14:14:57 +03:00
.theme-buttons button {
margin-left: 10px;
}
.control-icon.ion-navicon {
2017-06-21 17:34:10 +03:00
font-size: 2.5rem;
}
.logo {
font-size: 1.7rem;
2017-06-21 17:34:10 +03:00
font-weight: nga-theme(font-weight-bolder);
text-decoration: none;
transition: all 0.2s ease;
cursor: pointer;
a {
font-weight: normal;
}
}
}
}