2022-06-07 17:36:05 +00:00
|
|
|
import { Global } from '@mantine/core';
|
2023-07-21 18:08:40 +09:00
|
|
|
|
2022-12-04 17:36:30 +01:00
|
|
|
import { useConfigContext } from '../../config/provider';
|
2022-06-07 17:36:05 +00:00
|
|
|
|
|
|
|
|
export function Background() {
|
2022-12-04 17:36:30 +01:00
|
|
|
const { config } = useConfigContext();
|
2022-06-07 17:36:05 +00:00
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Global
|
|
|
|
|
styles={{
|
|
|
|
|
body: {
|
2022-06-08 18:09:59 -04:00
|
|
|
minHeight: '100vh',
|
2022-12-04 17:36:30 +01:00
|
|
|
backgroundImage: `url('${config?.settings.customization.backgroundImageUrl}')` || '',
|
2022-06-08 18:09:59 -04:00
|
|
|
backgroundPosition: 'center center',
|
2022-06-07 17:36:05 +00:00
|
|
|
backgroundSize: 'cover',
|
|
|
|
|
backgroundRepeat: 'no-repeat',
|
|
|
|
|
},
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|