🎨 Fix CSS: Import global.css + plain CSS styles
CSS was not being imported! Fixed: ✅ Added 'import ../styles/global.css' to BaseLayout.astro ✅ Rewrote CSS with plain CSS (not @apply which wasn't working) ✅ Cookie banner has inline styles as backup ✅ Font size: 16px base ✅ Solid colors: green-600 (#16a34a), gray-900 (#111827) ✅ Footer has policy links Build: 12 pages ✅
This commit is contained in:
1
dealplustech-astro/node_modules/tailwindcss/stubs/.npmignore
generated
vendored
Normal file
1
dealplustech-astro/node_modules/tailwindcss/stubs/.npmignore
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
!*
|
||||
6
dealplustech-astro/node_modules/tailwindcss/stubs/.prettierrc.json
generated
vendored
Normal file
6
dealplustech-astro/node_modules/tailwindcss/stubs/.prettierrc.json
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"printWidth": 120,
|
||||
"semi": false,
|
||||
"singleQuote": true,
|
||||
"trailingComma": "es5"
|
||||
}
|
||||
1062
dealplustech-astro/node_modules/tailwindcss/stubs/config.full.js
generated
vendored
Normal file
1062
dealplustech-astro/node_modules/tailwindcss/stubs/config.full.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
7
dealplustech-astro/node_modules/tailwindcss/stubs/config.simple.js
generated
vendored
Normal file
7
dealplustech-astro/node_modules/tailwindcss/stubs/config.simple.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
module.exports = {
|
||||
content: [],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
6
dealplustech-astro/node_modules/tailwindcss/stubs/postcss.config.cjs
generated
vendored
Normal file
6
dealplustech-astro/node_modules/tailwindcss/stubs/postcss.config.cjs
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
module.exports = {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
autoprefixer: {},
|
||||
},
|
||||
}
|
||||
6
dealplustech-astro/node_modules/tailwindcss/stubs/postcss.config.js
generated
vendored
Normal file
6
dealplustech-astro/node_modules/tailwindcss/stubs/postcss.config.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
export default {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
autoprefixer: {},
|
||||
},
|
||||
}
|
||||
2
dealplustech-astro/node_modules/tailwindcss/stubs/tailwind.config.cjs
generated
vendored
Normal file
2
dealplustech-astro/node_modules/tailwindcss/stubs/tailwind.config.cjs
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = __CONFIG__
|
||||
2
dealplustech-astro/node_modules/tailwindcss/stubs/tailwind.config.js
generated
vendored
Normal file
2
dealplustech-astro/node_modules/tailwindcss/stubs/tailwind.config.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default __CONFIG__
|
||||
3
dealplustech-astro/node_modules/tailwindcss/stubs/tailwind.config.ts
generated
vendored
Normal file
3
dealplustech-astro/node_modules/tailwindcss/stubs/tailwind.config.ts
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
import type { Config } from 'tailwindcss'
|
||||
|
||||
export default __CONFIG__ satisfies Config
|
||||
Reference in New Issue
Block a user