Skip to content

Commit

Permalink
fix tailwind base style
Browse files Browse the repository at this point in the history
  • Loading branch information
ezzabuzaid committed Nov 13, 2023
1 parent ea61661 commit 058ec38
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ export default defineConfig({
prefetch(),
expressiveCode(),
mdx(),
tailwind(),
tailwind({
applyBaseStyles: false,
}),
react(),
sitemap(),
],
Expand Down
1 change: 1 addition & 0 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
import { AstroSeo } from "@astrolib/seo";
import { SITE } from "@config";
import "@styles/base.css";
import { ViewTransitions } from "astro:transitions";
import Sidebar from "../components/Sidebar.astro";
const currentYear = new Date().getFullYear();
Expand Down

0 comments on commit 058ec38

Please sign in to comment.