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.
37 lines
746 B
37 lines
746 B
@import 'apps/client/src/styles/ghostfolio-style';
|
|
|
|
:host {
|
|
color: rgb(var(--dark-primary-text));
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: calc(100vh - 5rem);
|
|
overflow-y: auto;
|
|
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
padding-bottom: constant(safe-area-inset-bottom);
|
|
|
|
::ng-deep {
|
|
gf-activities-page,
|
|
gf-allocations-page,
|
|
gf-analysis-page,
|
|
gf-holdings-page,
|
|
gf-fire-page {
|
|
flex: 1 1 auto;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.mat-mdc-tab-link-container {
|
|
--mdc-tab-indicator-active-indicator-color: transparent;
|
|
|
|
.mat-mdc-tab-link {
|
|
&:hover {
|
|
opacity: 0.75;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
:host-context(.is-dark-theme) {
|
|
color: rgb(var(--light-primary-text));
|
|
}
|
|
|