Skip to content

Commit 5457521

Browse files
Fixing the background color of the "re-login" screen when your session has timed out. (#18284)
* Updated modal background color The background color of the authentication modal has been updated to use a CSS variable for better customization. The default value remains the same. * Update umb-app-auth-modal.element.ts to use less specific css custom property --------- Co-authored-by: Niels Lyngsø <[email protected]>
1 parent 447b36a commit 5457521

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Umbraco.Web.UI.Client/src/packages/core/auth/modals/umb-app-auth-modal.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export class UmbAppAuthModalElement extends UmbModalBaseElement<UmbModalAppAuthC
170170
css`
171171
:host {
172172
display: block;
173-
background: rgb(244, 244, 244);
173+
background: var(--uui-color-surface, #f4f4f4);
174174
175175
--curves-color: var(--umb-login-curves-color, #f5c1bc);
176176
--curves-display: var(--umb-login-curves-display, inline);

0 commit comments

Comments
 (0)