This commit is contained in:
Jared Palmer 2023-05-19 14:29:13 -04:00
parent ae9eae0018
commit ccdadbe5b7
3 changed files with 1 additions and 7 deletions

19
app/globals.css Normal file
View file

@ -0,0 +1,19 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
#__next,
#root {
height: 100%;
}
body,
html {
height: 100%;
}
}
pre:has(div.codeblock) {
padding: 0;
}

View file

@ -1,4 +1,4 @@
import "@/styles/globals.css";
import "./globals.css";
import { Metadata } from "next";
import { ThemeProvider } from "@/components/theme-provider";