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

54 lines
776 B
SCSS
Raw Normal View History

:host {
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;
border-right-width: 1px;
border-right-style: solid;
&: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 {
font-size: 2.8rem;
}
.logo {
font-size: 1.7rem;
font-weight: bold;
text-decoration: none;
transition: all 0.2s ease;
cursor: pointer;
a {
font-weight: normal;
}
}
}
}