[READ-ONLY] Mirror of https://github.com/hacknug/tailwindcss-plugin-utils. A bunch of utilities to help you create and maintain plugins for Tailwind. www.npmjs.com/package/@hacknug/tailwindcss-plugin-utils
0

Configure Feed

Select the types of activity you want to include in your feed.

Move `theme.screens` to generatePluginCss()

Nestor Vera (Jul 24, 2019, 1:00 PM +0200) f5f2bf3e 956bd134

+1 -3
-3
tailwind.config.js
··· 3 3 4 4 module.exports = { 5 5 theme: { 6 - extend: {}, 7 - screens: { sm: '640px' }, 8 - 9 6 textColor: {}, // Forces using `bgColor` as fallback 10 7 backgroundColor: { tailwind: '#38b2ac' }, 11 8
+1
src/index.js
··· 95 95 96 96 export const generatePluginCss = (tailwindConfig = {}, testConfig = {}, pluginOptions = {}) => { 97 97 const sandboxConfig = { 98 + theme: { screens: { sm: '640px' } }, 98 99 corePlugins: false, 99 100 variants: [], 100 101 }