Skip to content

Commit 23bee40

Browse files
committed
refactor: consolidate css imports into global.css
1 parent 6eed7bc commit 23bee40

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/pages/_app.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@ import { AppPropsWithLayout } from "@/lib/types"
66

77
import ThemeProvider from "@/components/ThemeProvider"
88

9-
import "@docsearch/css"
109
import "@/styles/global.css"
11-
import "@/styles/fonts.css"
12-
import "@/styles/docsearch.css"
1310

1411
import { BaseLayout } from "@/layouts/BaseLayout"
1512

src/styles/global.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
@tailwind components;
33
@tailwind utilities;
44

5+
@import "@docsearch/css";
6+
@import "@/styles/fonts.css";
7+
@import "@/styles/docsearch.css";
8+
59
@layer base {
610
:root {
711
--font-inter: Inter, sans-serif;

0 commit comments

Comments
 (0)