Merge pull request #1083 from manniL/feat/justify-content-space-evenly

feat: add justify-evenly util
This commit is contained in:
Adam Wathan 2019-09-14 22:29:11 -04:00 committed by GitHub
commit 52c17f5cb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 43 additions and 0 deletions

View File

@ -3456,6 +3456,10 @@ video {
justify-content: space-around !important;
}
.justify-evenly {
justify-content: space-evenly !important;
}
.content-center {
align-content: center !important;
}
@ -11191,6 +11195,10 @@ video {
justify-content: space-around !important;
}
.sm\:justify-evenly {
justify-content: space-evenly !important;
}
.sm\:content-center {
align-content: center !important;
}
@ -18927,6 +18935,10 @@ video {
justify-content: space-around !important;
}
.md\:justify-evenly {
justify-content: space-evenly !important;
}
.md\:content-center {
align-content: center !important;
}
@ -26663,6 +26675,10 @@ video {
justify-content: space-around !important;
}
.lg\:justify-evenly {
justify-content: space-evenly !important;
}
.lg\:content-center {
align-content: center !important;
}
@ -34399,6 +34415,10 @@ video {
justify-content: space-around !important;
}
.xl\:justify-evenly {
justify-content: space-evenly !important;
}
.xl\:content-center {
align-content: center !important;
}

View File

@ -3456,6 +3456,10 @@ video {
justify-content: space-around;
}
.justify-evenly {
justify-content: space-evenly;
}
.content-center {
align-content: center;
}
@ -11191,6 +11195,10 @@ video {
justify-content: space-around;
}
.sm\:justify-evenly {
justify-content: space-evenly;
}
.sm\:content-center {
align-content: center;
}
@ -18927,6 +18935,10 @@ video {
justify-content: space-around;
}
.md\:justify-evenly {
justify-content: space-evenly;
}
.md\:content-center {
align-content: center;
}
@ -26663,6 +26675,10 @@ video {
justify-content: space-around;
}
.lg\:justify-evenly {
justify-content: space-evenly;
}
.lg\:content-center {
align-content: center;
}
@ -34399,6 +34415,10 @@ video {
justify-content: space-around;
}
.xl\:justify-evenly {
justify-content: space-evenly;
}
.xl\:content-center {
align-content: center;
}

View File

@ -17,6 +17,9 @@ export default function() {
'.justify-around': {
'justify-content': 'space-around',
},
'.justify-evenly': {
'justify-content': 'space-evenly',
},
},
variants('justifyContent')
)