MOBILE-3814 my: Fix broken logo on my courses toolbar
parent
1a0ea46a2d
commit
92f33e9a2e
|
@ -5,7 +5,7 @@
|
|||
</ion-title>
|
||||
<ion-buttons slot="end">
|
||||
<ion-button fill="clear" (click)="closeModal()" [attr.aria-label]="'core.close' | translate">
|
||||
<ion-icon name="fas-times" slot="icon-only" aria-hidden=true></ion-icon>
|
||||
<ion-icon name="fas-times" slot="icon-only" aria-hidden="true"></ion-icon>
|
||||
</ion-button>
|
||||
</ion-buttons>
|
||||
</ion-toolbar>
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
@import "~theme/globals";
|
||||
|
||||
:host ::ng-deep ion-item-divider {
|
||||
display: none !important;
|
||||
}
|
||||
|
@ -8,3 +10,17 @@
|
|||
:host-context(ion-tabs.placement-bottom) ::ng-deep core-loading {
|
||||
--internal-loading-inline-min-height: calc(100vh - var(--core-header-toolbar-height) - var(--bottom-tabs-size) - 2px);
|
||||
}
|
||||
|
||||
@if ($core-dashboard-logo) {
|
||||
.in-toolbar h1 .core-header-logo {
|
||||
max-height: calc(var(--core-header-toolbar-height) - 24px);
|
||||
}
|
||||
|
||||
.in-toolbar h1 core-format-text {
|
||||
display: none;
|
||||
}
|
||||
} @else {
|
||||
.in-toolbar h1 .core-header-logo {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue