Merge pull request #699 from tailwindcss/extend-spacing

Add 40/48/56/64 to shared spacing scale
This commit is contained in:
Adam Wathan 2019-03-01 13:46:58 -05:00 committed by GitHub
commit 4eba10a16d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3684 additions and 6 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -101,6 +101,10 @@ module.exports = function() {
'20': '5rem',
'24': '6rem',
'32': '8rem',
'40': '10rem',
'48': '12rem',
'56': '14rem',
'64': '16rem',
},
screens: {
sm: '568px',
@ -221,9 +225,6 @@ module.exports = function() {
width: theme => ({
auto: 'auto',
...theme.spacing,
'48': '12rem',
'56': '14rem',
'64': '16rem',
'1/2': '50%',
'1/3': '33.33333%',
'2/3': '66.66667%',
@ -241,9 +242,6 @@ module.exports = function() {
height: theme => ({
auto: 'auto',
...theme.spacing,
'48': '12rem',
'56': '14rem',
'64': '16rem',
full: '100%',
screen: '100vh',
}),