Skip to content

Instantly share code, notes, and snippets.

@morrislaptop
Created January 13, 2021 23:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save morrislaptop/ad856907c0ee5b5a23baf5a4b337f787 to your computer and use it in GitHub Desktop.
Save morrislaptop/ad856907c0ee5b5a23baf5a4b337f787 to your computer and use it in GitHub Desktop.
const colors = require('tailwindcss/colors')
module.exports = {
theme: {
extend: {
screens: {
'-2xl': { max: '1535px' },
'-xl': { max: '1279px' },
'-lg': { max: '1023px' },
'-md': { max: '767px' },
'-sm': { max: '639px' },
'@md': { min: '640px', max: '767px' },
'@lg': { min: '768px', max: '1023px' },
'@xl': { min: '1024px', max: '1279px' },
'@2xl': { min: '1280px', max: '1535px' },
},
},
},
variants: {},
plugins: [],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment