[ACS-9670] Add white background to login screen (#4589)

* [ACS-9670] Add white background to login screen

* [ACS-9670] Move white color to separate variable

* [ACS-9670] Add missing change
This commit is contained in:
MichalKinas
2025-05-30 16:21:30 +02:00
committed by GitHub
parent 5ed6ab10a1
commit 5b388270c5
7 changed files with 22 additions and 15 deletions

View File

@@ -31,6 +31,13 @@ import { AppSettingsService } from '@alfresco/aca-shared';
standalone: true,
imports: [LoginComponent, TranslateModule],
templateUrl: './app-login.component.html',
styles: [
`
.adf-login {
background-color: var(--theme-white-background);
}
`
],
encapsulation: ViewEncapsulation.None
})
export class AppLoginComponent {