Merge pull request #1301 from Kosai106/patch-1

Update defaultConfig.stub.js
This commit is contained in:
Adam Wathan 2020-01-09 08:08:15 -05:00 committed by GitHub
commit 4fd173ea48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -303,23 +303,21 @@ module.exports = {
full: '100%',
screen: '100vh',
},
maxWidth: (theme, { breakpoints }) => {
return {
none: 'none',
xs: '20rem',
sm: '24rem',
md: '28rem',
lg: '32rem',
xl: '36rem',
'2xl': '42rem',
'3xl': '48rem',
'4xl': '56rem',
'5xl': '64rem',
'6xl': '72rem',
full: '100%',
...breakpoints(theme('screens')),
}
},
maxWidth: (theme, { breakpoints }) => ({
none: 'none',
xs: '20rem',
sm: '24rem',
md: '28rem',
lg: '32rem',
xl: '36rem',
'2xl': '42rem',
'3xl': '48rem',
'4xl': '56rem',
'5xl': '64rem',
'6xl': '72rem',
full: '100%',
...breakpoints(theme('screens')),
}),
minHeight: {
'0': '0',
full: '100%',