Replies: 1 comment 6 replies
-
If anyone else gets stuck here, I had to:
module.exports = {
plugins: {
tailwindcss: {},
'postcss-flexbugs-fixes': {},
'postcss-preset-env': {
autoprefixer: {
flexbox: 'no-2009'
},
stage: 3
}
}
}
module.exports = {
content: ["./src/**/*.{mdx,md,erb,html,liquid}"],
theme: {
extend: {},
},
plugins: [],
} |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, and thanks for this awesome tool!
I ran
bundle exec bridgetown configure tailwindcss
and addedclass="container mx-auto"
to my<main>
element. I see the classes in my page html, but there are no tailwind styles applied. What am I missing? I searched my repo for the text "tailwind" and it isn't present. Am I supposed to also go through installation steps from tailwind's site?Thanks again.
Beta Was this translation helpful? Give feedback.
All reactions