diff --git a/src/app/features/meetings/meetings.component.ts b/src/app/features/meetings/meetings.component.ts index e92fc75e1..9ea6df112 100644 --- a/src/app/features/meetings/meetings.component.ts +++ b/src/app/features/meetings/meetings.component.ts @@ -9,5 +9,5 @@ import { RouterOutlet } from '@angular/router'; changeDetection: ChangeDetectionStrategy.OnPush, }) export class MeetingsComponent { - @HostBinding('class') classes = 'flex flex-1 flex-column w-full h-full'; + @HostBinding('class') classes = 'flex flex-1 flex-column w-full'; } diff --git a/src/app/features/my-profile/my-profile.component.html b/src/app/features/my-profile/my-profile.component.html index 222e2a370..ef63cc46b 100644 --- a/src/app/features/my-profile/my-profile.component.html +++ b/src/app/features/my-profile/my-profile.component.html @@ -1,6 +1,7 @@

{{ currentUser()?.fullName }}

+ @if (!isMobile()) { } diff --git a/src/app/features/preprints/preprints.component.ts b/src/app/features/preprints/preprints.component.ts index 90508c6f7..8192ce11c 100644 --- a/src/app/features/preprints/preprints.component.ts +++ b/src/app/features/preprints/preprints.component.ts @@ -13,5 +13,5 @@ import { IS_WEB } from '@shared/utils'; }) export class PreprintsComponent { protected readonly isDesktop = toSignal(inject(IS_WEB)); - @HostBinding('class') classes = 'flex flex-1 flex-column w-full h-full'; + @HostBinding('class') classes = 'flex flex-1 flex-column w-full'; } diff --git a/src/app/features/project/project.component.ts b/src/app/features/project/project.component.ts index ad2dc2ccc..e6191eac5 100644 --- a/src/app/features/project/project.component.ts +++ b/src/app/features/project/project.component.ts @@ -10,5 +10,5 @@ import { RouterOutlet } from '@angular/router'; changeDetection: ChangeDetectionStrategy.OnPush, }) export class ProjectComponent { - @HostBinding('class') classes = 'flex flex-1 flex-column w-full h-full'; + @HostBinding('class') classes = 'flex flex-1 flex-column w-full'; }