diff --git a/src/app/core/components/root/root.component.scss b/src/app/core/components/root/root.component.scss
index 2d9da4687..7090691b3 100644
--- a/src/app/core/components/root/root.component.scss
+++ b/src/app/core/components/root/root.component.scss
@@ -4,6 +4,7 @@
:host {
height: 100vh;
display: flex;
+ max-width: 100vw;
.layout-desktop {
display: flex;
@@ -29,6 +30,7 @@
.layout-tablet {
@include mix.flex-center;
flex: 1;
+ max-width: 100vw;
.content-wrapper {
@include mix.flex-column;
diff --git a/src/app/core/components/root/root.component.ts b/src/app/core/components/root/root.component.ts
index 23361ce2b..194dd6007 100644
--- a/src/app/core/components/root/root.component.ts
+++ b/src/app/core/components/root/root.component.ts
@@ -5,7 +5,7 @@ import { HeaderComponent } from '@core/components/header/header.component';
import { MainContentComponent } from '@core/components/main-content/main-content.component';
import { FooterComponent } from '@core/components/footer/footer.component';
import { TopnavComponent } from '@core/components/topnav/topnav.component';
-import { IS_PORTRAIT } from '@shared/utils/breakpoints.tokens';
+import { IS_WEB } from '@shared/utils/breakpoints.tokens';
import { toSignal } from '@angular/core/rxjs-interop';
@Component({
@@ -24,6 +24,6 @@ import { toSignal } from '@angular/core/rxjs-interop';
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class RootComponent {
- #isPortrait$ = inject(IS_PORTRAIT);
- isPortrait = toSignal(this.#isPortrait$);
+ #isWeb$ = inject(IS_WEB);
+ isWeb = toSignal(this.#isWeb$);
}
diff --git a/src/app/features/auth/forgot-password/forgot-password.component.html b/src/app/features/auth/forgot-password/forgot-password.component.html
index efbff5da7..83874af3f 100644
--- a/src/app/features/auth/forgot-password/forgot-password.component.html
+++ b/src/app/features/auth/forgot-password/forgot-password.component.html
@@ -1,4 +1,4 @@
-
+
Forgot Your Password?
Enter your email address and we'll send a link to reset your password
diff --git a/src/app/features/auth/forgot-password/forgot-password.component.ts b/src/app/features/auth/forgot-password/forgot-password.component.ts
index 8198c2f80..897144f09 100644
--- a/src/app/features/auth/forgot-password/forgot-password.component.ts
+++ b/src/app/features/auth/forgot-password/forgot-password.component.ts
@@ -17,11 +17,11 @@ import { toSignal } from '@angular/core/rxjs-interop';
})
export class ForgotPasswordComponent {
#fb = inject(FormBuilder);
- #isXSmall$ = inject(IS_XSMALL);
+ #isMobile$ = inject(IS_XSMALL);
forgotPasswordForm: ForgotPasswordFormGroupType = this.#fb.group({
email: ['', [Validators.required, Validators.email]],
});
- isXSmall = toSignal(this.#isXSmall$);
+ isMobile = toSignal(this.#isMobile$);
message = signal(null);
onSubmit(): void {
diff --git a/src/app/features/auth/reset-password/reset-password.component.html b/src/app/features/auth/reset-password/reset-password.component.html
index e8fab76ad..dab201213 100644
--- a/src/app/features/auth/reset-password/reset-password.component.html
+++ b/src/app/features/auth/reset-password/reset-password.component.html
@@ -1,5 +1,5 @@
@if (!isFormSubmitted()) {
-