mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-27 02:23:10 +00:00
74 lines
1.3 KiB
SCSS
74 lines
1.3 KiB
SCSS
@import 'src/app/core/scss/fuse';
|
|
|
|
:host {
|
|
position: relative;
|
|
display: flex;
|
|
flex: 0 0 auto;
|
|
z-index: 4;
|
|
|
|
&.below {
|
|
z-index: 2;
|
|
}
|
|
|
|
.mat-toolbar {
|
|
background: inherit;
|
|
color: inherit;
|
|
}
|
|
|
|
.logo {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.logo-icon {
|
|
display: block;
|
|
background: #039BE5;
|
|
width: 32px;
|
|
min-width: 32px;
|
|
height: 32px;
|
|
line-height: 32px;
|
|
text-align: center;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
color: #FFF;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.logo-text {
|
|
margin-left: 16px;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
.loading-spinner {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
.user-button,
|
|
.search-button,
|
|
.language-button,
|
|
.quick-panel-toggle-button {
|
|
min-width: 64px;
|
|
height: 64px;
|
|
|
|
@include media-breakpoint-down('xs') {
|
|
height: 56px;
|
|
}
|
|
}
|
|
|
|
.toggle-button-navbar {
|
|
min-width: 56px;
|
|
height: 56px;
|
|
}
|
|
|
|
.toolbar-separator {
|
|
height: 64px;
|
|
width: 1px;
|
|
background: rgba(0, 0, 0, .12);
|
|
|
|
@include media-breakpoint-down('xs') {
|
|
height: 56px;
|
|
}
|
|
}
|
|
}
|