We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ae6ee6 commit cd63948Copy full SHA for cd63948
src/build.js
@@ -10,8 +10,7 @@ function buildDistFile(filename) {
10
fs.readFile(`./${filename}.css`, (err, css) => {
11
if (err) throw err
12
13
- // return postcss([tailwind(), require('autoprefixer')])
14
- return postcss([tailwind()])
+ return postcss([tailwind(), require('autoprefixer')])
15
.process(css, {
16
from: `./${filename}.css`,
17
to: `./dist/${filename}.css`,
tailwind.css
@@ -3,10 +3,3 @@
3
@tailwind components;
4
5
@tailwind utilities;
6
-
7
-@responsive {
8
- .example {
9
- @apply .font-bold;
- color: theme('colors.red.500');
- }
-}
0 commit comments