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.
38 lines
603 B
38 lines
603 B
@import '~apps/client/src/styles/ghostfolio-style';
|
|
|
|
:host {
|
|
display: block;
|
|
z-index: 999;
|
|
|
|
.mat-toolbar {
|
|
background-color: rgba(
|
|
var(--light-primary-text),
|
|
var(--palette-foreground-disabled-alpha)
|
|
);
|
|
|
|
.spacer {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.mat-flat-button {
|
|
&:not(.mat-primary) {
|
|
background-color: transparent;
|
|
}
|
|
|
|
ion-icon {
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
:host-context(.is-dark-theme) {
|
|
.mat-toolbar {
|
|
background-color: rgba(
|
|
39,
|
|
39,
|
|
39,
|
|
var(--palette-foreground-disabled-alpha)
|
|
);
|
|
}
|
|
}
|
|
|