Skip to content

Commit d6f1d22

Browse files
committed
feat: Set global.css as main stylesheet
Created styles/global.css and replaced Tailwind's default configuration for using it as the primary stylesheet for the project. This will ensure consistent styles across all pages. Future global styles could mix tailwind classes and css if needed
1 parent 2497f72 commit d6f1d22

File tree

5 files changed

+5146
-2
lines changed

5 files changed

+5146
-2
lines changed

astro.config.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,9 @@ import compressor from 'astro-compressor';
1212
// https://astro.build/config
1313
export default defineConfig({
1414
site: "https://ecuadorintech.org",
15-
integrations: [tailwind(), alpinejs(), sitemap(), compressor()]
15+
integrations: [
16+
tailwind({
17+
applyBaseStyles: false,
18+
}),
19+
alpinejs(), sitemap(), compressor()]
1620
})

0 commit comments

Comments
 (0)