background color
This commit is contained in:
parent
cb0198f035
commit
cb2030e8aa
|
@ -51,7 +51,7 @@ export default function RootLayout({
|
|||
<html lang="en">
|
||||
|
||||
<body
|
||||
className={`${geistSans.variable} ${geistMono.variable} antialiased bg-[#F6E5E9]`}
|
||||
className={`${geistSans.variable} ${geistMono.variable} antialiased bg-[#F6E5E9] max-sm:bg-[#FFF9F9]`}
|
||||
>
|
||||
<link rel="icon" href="/favicon.ico" sizes="any" />
|
||||
<NextTopLoader color="#D60050" height={5} />
|
||||
|
|
|
@ -25,7 +25,7 @@ const Home = ({ settings, aboutus }: { settings: SettingsProps, aboutus: Aboutus
|
|||
const stopLoading = () => setLoading(false);
|
||||
|
||||
return (
|
||||
<div className='bg-[#F2D5D5]'>
|
||||
<div className='bg-[#F2D5D5] sm:bg-[#FFF9F9]'>
|
||||
{loading ? (
|
||||
<div className="flex justify-center items-center h-screen">
|
||||
<Suspense fallback={<div>Loading...</div>}>
|
||||
|
|
Loading…
Reference in New Issue