design update

This commit is contained in:
Amit Roy 2024-08-07 18:26:46 +05:30
parent b8523bea88
commit 6107572be7
3 changed files with 7 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

View File

@ -9,7 +9,12 @@ const roboto = Roboto({
});
const getCssVariableValue = (variable: string): string => {
return getComputedStyle(document.documentElement).getPropertyValue(variable);
if (typeof window !== "undefined") {
return getComputedStyle(document.documentElement).getPropertyValue(
variable
);
}
return "";
};
const theme = createTheme({

View File

@ -2,7 +2,7 @@ export const UTILITY_CONSTANT = {
IMAGES: {
AUTH: {
HEADER_LOG: "/assets/images/auth/headerLogo.webp",
LOGIN_BG: "/assets/images/auth/loginbg.svg",
LOGIN_BG: "/assets/images/auth/loginbg.webp",
},
},
};