Skip to content

Commit bc306d0

Browse files
committed
+
1 parent 56f3c40 commit bc306d0

File tree

5 files changed

+2
-7
lines changed

5 files changed

+2
-7
lines changed

.eslintrc.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"plugin:react-hooks/recommended",
1212
"plugin:@typescript-eslint/recommended",
1313
"plugin:@typescript-eslint/recommended-requiring-type-checking",
14-
"plugin:astro/recommended"
1514
],
1615
"overrides": [],
1716
"parser": "@typescript-eslint/parser",

src/ui/BaseHead.astro

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
import GlobalStyles from "@components/GlobalStyles.astro";
23
import { ViewTransitions } from "astro:transitions";
34
interface Props {
45
title: string;
@@ -136,4 +137,5 @@ const defaultDescription = 'Drizzle ORM is a lightweight and performant TypeScri
136137
data-site-id="orm.drizzle.team"
137138
src="https://assets.onedollarstats.com/tracker.js">
138139
</script>
140+
<GlobalStyles />
139141
</head>

src/ui/CenteredLayout.astro

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
import EndOfContent from "./components/EndOfContent.astro";
3-
import GlobalStyles from "./components/GlobalStyles.astro";
43
import MDXStyles from "./components/MDXStyles.astro";
54
import Banner from "./components/Banner.astro";
65
import BaseHead from "@/ui/BaseHead.astro";
@@ -32,7 +31,6 @@ const { title, tree } = await getContentTree({
3231
description={description}
3332
/>
3433
<body class="banner-shown">
35-
<GlobalStyles />
3634
<MDXStyles />
3735
<Banner />
3836
<NavigationAstro />

src/ui/DocsLayout.astro

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
import EndOfContent from "./components/EndOfContent.astro";
3-
import GlobalStyles from "./components/GlobalStyles.astro";
43
import MDXStyles from "./components/MDXStyles.astro";
54
import Banner from "./components/Banner.astro";
65
import BaseHead from "@/ui/BaseHead.astro";
@@ -38,7 +37,6 @@ const pageHasDialects = Object.keys(dialects).includes(
3837
description={description}
3938
/>
4039
<body class="banner-shown">
41-
<GlobalStyles />
4240
<MDXStyles />
4341
<Banner />
4442
<Header />

src/ui/Layout.astro

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
import { getContentTree } from "@/utils";
3-
import GlobalStyles from "./components/GlobalStyles.astro";
43
import NavigationAstro from "./components/NavigationAstro.astro";
54
import Footer from "./components/Footer.astro";
65
import BaseHead from "@/ui/BaseHead.astro";
@@ -20,7 +19,6 @@ const { tree } = await getContentTree({});
2019
<BaseHead title={title} />
2120
<body class="banner-shown">
2221
<Banner />
23-
<GlobalStyles />
2422
<NavigationAstro />
2523
<main class="landing-wrap scrollbar">
2624
<div class="landing-content">

0 commit comments

Comments
 (0)