mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
Merge pull request #1083 from manniL/feat/justify-content-space-evenly
feat: add justify-evenly util
This commit is contained in:
commit
52c17f5cb8
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -17,6 +17,9 @@ export default function() {
|
||||
'.justify-around': {
|
||||
'justify-content': 'space-around',
|
||||
},
|
||||
'.justify-evenly': {
|
||||
'justify-content': 'space-evenly',
|
||||
},
|
||||
},
|
||||
variants('justifyContent')
|
||||
)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user