mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
969 B
54 lines
969 B
@import 'apps/client/src/styles/ghostfolio-style';
|
|
|
|
:host {
|
|
display: block;
|
|
z-index: 999;
|
|
|
|
.mat-toolbar {
|
|
background-color: var(--light-background);
|
|
|
|
.logo-container {
|
|
&.filled {
|
|
background-color: rgba(var(--palette-foreground-base), 0.02);
|
|
}
|
|
|
|
@media (min-width: 576px) {
|
|
width: 14rem;
|
|
}
|
|
}
|
|
|
|
.list-inline-item {
|
|
margin: 0;
|
|
}
|
|
|
|
.mdc-button {
|
|
height: 100%;
|
|
|
|
&:not(.mat-primary) {
|
|
background-color: transparent;
|
|
text-decoration-color: rgba(var(--palette-primary-500), 1) !important;
|
|
text-underline-offset: 0.25rem;
|
|
}
|
|
|
|
ion-icon {
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|
|
|
|
.spacer {
|
|
flex: 1 1 auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
:host-context(.is-dark-theme) {
|
|
.mat-toolbar {
|
|
background-color: var(--dark-background);
|
|
|
|
.logo-container {
|
|
&.filled {
|
|
background-color: rgba(var(--palette-foreground-base-dark), 0.02);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|