From 579fb6737d830024c200871aa21723838a41ed3f Mon Sep 17 00:00:00 2001 From: Laurent Caouissin Date: Mon, 22 Apr 2024 10:15:22 +0200 Subject: [PATCH] build: style for autologout --- src/components/auth/AutoLogoutCountDown/index.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/auth/AutoLogoutCountDown/index.js b/src/components/auth/AutoLogoutCountDown/index.js index 7e274eca..a99e24fb 100644 --- a/src/components/auth/AutoLogoutCountDown/index.js +++ b/src/components/auth/AutoLogoutCountDown/index.js @@ -55,12 +55,16 @@ export function AutoLogoutCountdown() { justifyContent: 'center', alignItems: 'center', textAlign: 'center', + color: 'white', + fontWeight: 'bold', zIndex: 1000, }} >
- {defaultDictionary.logoutAreYouThere} - {`${defaultDictionary.logoutCountDown} ${secondsLeft} sec`} + + {defaultDictionary.logoutAreYouThere} + + {`${defaultDictionary.logoutCountDown} ${secondsLeft} sec.`}
);