aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/components/pages/home-shared/GlobalStyles.tsx
blob: 5f695f3aebef4d8cc53849024de797beefc158ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import Head from "next/head";

export function LandingPageGlobalStyles() {
  return (
    <Head>
      <style>
        {`
          .dark footer,
          .dark body {
            background-color: black !important;
          }

          .dark .nextra-nav-container .nextra-nav-container-blur  {
            background-color: rgba(0,0,0,.5) !important;
          }
    `}
      </style>
    </Head>
  );
}