mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-24 11:20:13 +01:00
54 lines
851 B
SCSS
54 lines
851 B
SCSS
@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;
|
|
border-right: 1px solid nga-theme(separator);
|
|
|
|
&:first-child {
|
|
padding-left: 0;
|
|
}
|
|
|
|
&:last-child {
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
.theme-buttons button {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.control-icon.ion-navicon {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 1.7rem;
|
|
font-weight: nga-theme(font-weight-bolder);
|
|
text-decoration: none;
|
|
transition: all 0.2s ease;
|
|
cursor: pointer;
|
|
|
|
a {
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|