[Solved] simple CSS question
Unanswered
Chum salmon posted this in #help-forum
Chum salmonOP
<div id="__next">
<div class="container mx-auto flex items-start sm:pr-4 dark:bg-black">how do I get the
dark:bg-black into the above div4 Replies
Chum salmonOP
const MyApp: AppType<{ session: Session | null }> = ({
Component,
pageProps: { session, ...pageProps },
}) => {
return (
<SessionProvider session={session}>
<Head>
<title>BreakSphere</title>
<meta
name="description"
content="BreakSphere"
/>
<link rel="icon" href="/favicon.ico" />
</Head>
<div className="container mx-auto flex items-start sm:pr-4 dark:bg-black">this is why I want to change that
the white stuff on the side