commit a3d9e1eb391c7d2cca9657a4d423691b6e066943 parent 2b7e814c62c4acd7126d6f5150927d354abde946 Author: MTRNord <mtrnord1@gmail.com> Date: Thu, 30 Dec 2021 21:44:12 +0100 Fix light theme Diffstat:
| M | pages/Home.tsx | | | 2 | +- |
| M | styles/globals.css | | | 2 | +- |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/pages/Home.tsx b/pages/Home.tsx @@ -155,7 +155,7 @@ export default class Home extends Component<Props, State>{ <nav></nav> </header> <main className='pt-[54px] z-0'> - <div className='z-1 sticky top-[54px] bg-white dark:bg-[#14181E]'> + <div className='z-1 sticky top-[54px] bg-[#fefefe] dark:bg-[#14181E]'> <div className='h-[72px] px-10 w-full relative grid grid-cols-[1fr_auto_1fr] items-center' id='section-grid'> <h1 className='text-xl text-gray-900 dark:text-gray-200 font-bold'>Home</h1> </div> diff --git a/styles/globals.css b/styles/globals.css @@ -7,5 +7,5 @@ html, body { } body { - @apply bg-slate-300 dark:bg-[#06070D]; + @apply bg-[#f8f8f8] dark:bg-[#06070D]; } \ No newline at end of file