mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-07 05:55:48 +01:00
20 lines
432 B
TypeScript
20 lines
432 B
TypeScript
|
|
import { Global } from '@mantine/core';
|
||
|
|
import { useConfig } from '../../tools/state';
|
||
|
|
|
||
|
|
export function Background() {
|
||
|
|
const { config } = useConfig();
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Global
|
||
|
|
styles={{
|
||
|
|
body: {
|
||
|
|
backgroundImage: `url('${config.settings.background}')` || '',
|
||
|
|
backgroundPosition: 'center',
|
||
|
|
backgroundSize: 'cover',
|
||
|
|
backgroundRepeat: 'no-repeat',
|
||
|
|
},
|
||
|
|
}}
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
}
|