From e2e90ae8310786872eee05f2e30b85b12cdf28f1 Mon Sep 17 00:00:00 2001 From: nsemets Date: Tue, 3 Jun 2025 15:53:52 +0300 Subject: [PATCH] style(removed): fixed some styles --- src/app/features/meetings/meetings.component.ts | 2 +- src/app/features/my-profile/my-profile.component.html | 1 + src/app/features/preprints/preprints.component.ts | 2 +- src/app/features/project/project.component.ts | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) 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'; }