Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ export class CoreEditorRichTextEditorComponent implements AfterViewInit, OnDestr
async ngOnInit(): Promise<void> {
this.editorComponentClass = await CoreEditorService.getEditorComponentClass();
this.editorComponentData = {
name: this.name,
placeholder: this.placeholder,
component: this.component,
componentId: this.componentId,
Expand Down
2 changes: 1 addition & 1 deletion src/core/features/mainmenu/pages/more/more.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ <h1>{{ 'core.more' | translate }}</h1>
}
</ion-list>
</ion-content>
<ion-footer class="ion-no-border">
<ion-footer>
<ion-item button (click)="openSettings()" [attr.aria-label]="'core.settings.appsettings' | translate" [detail]="true">
<ion-icon name="fas-gears" slot="start" aria-hidden="true" />
<ion-label>
Expand Down
5 changes: 5 additions & 0 deletions src/theme/theme.base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,11 @@ ion-app > ion-modal.core-modal-lateral {
--ion-safe-area-top: inherit;
}

// Remove footer bottom shadow (Android only).
ion-footer.md {
clip-path: inset(-12px 0px 0px 0px);
}

ion-tabs.placement-side .tabs-inner {
--ion-safe-area-left: 0px;
}
Expand Down