tailwindcss 0.0.0-oxide-insiders.6cf5ab4 → 0.0.0-oxide-insiders.c0670cc

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1849,6 +1849,9 @@ let corePlugins = {
1849
1849
  },
1850
1850
  justifyContent: ({ addUtilities })=>{
1851
1851
  addUtilities({
1852
+ ".justify-normal": {
1853
+ "justify-content": "normal"
1854
+ },
1852
1855
  ".justify-start": {
1853
1856
  "justify-content": "flex-start"
1854
1857
  },
@@ -1866,6 +1869,9 @@ let corePlugins = {
1866
1869
  },
1867
1870
  ".justify-evenly": {
1868
1871
  "justify-content": "space-evenly"
1872
+ },
1873
+ ".justify-stretch": {
1874
+ "justify-content": "stretch"
1869
1875
  }
1870
1876
  });
1871
1877
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailwindcss",
3
- "version": "0.0.0-oxide-insiders.6cf5ab4",
3
+ "version": "0.0.0-oxide-insiders.c0670cc",
4
4
  "description": "A utility-first CSS framework for rapidly building custom user interfaces.",
5
5
  "license": "MIT",
6
6
  "main": "lib/index.js",
@@ -70,7 +70,7 @@
70
70
  "postcss": "^8.0.9"
71
71
  },
72
72
  "dependencies": {
73
- "@tailwindcss/oxide": "0.0.0-oxide-insiders.6cf5ab4",
73
+ "@tailwindcss/oxide": "0.0.0-oxide-insiders.c0670cc",
74
74
  "arg": "^5.0.2",
75
75
  "browserslist": "^4.21.5",
76
76
  "chokidar": "^3.5.3",
@@ -89,7 +89,7 @@
89
89
  "picocolors": "^1.0.0",
90
90
  "postcss": "^8.4.21",
91
91
  "postcss-import": "^14.1.0",
92
- "postcss-js": "^4.0.0",
92
+ "postcss-js": "^4.0.1",
93
93
  "postcss-load-config": "^3.1.4",
94
94
  "postcss-nested": "6.0.0",
95
95
  "postcss-selector-parser": "^6.0.11",
@@ -1218,12 +1218,14 @@ export let corePlugins = {
1218
1218
 
1219
1219
  justifyContent: ({ addUtilities }) => {
1220
1220
  addUtilities({
1221
+ '.justify-normal': { 'justify-content': 'normal' },
1221
1222
  '.justify-start': { 'justify-content': 'flex-start' },
1222
1223
  '.justify-end': { 'justify-content': 'flex-end' },
1223
1224
  '.justify-center': { 'justify-content': 'center' },
1224
1225
  '.justify-between': { 'justify-content': 'space-between' },
1225
1226
  '.justify-around': { 'justify-content': 'space-around' },
1226
1227
  '.justify-evenly': { 'justify-content': 'space-evenly' },
1228
+ '.justify-stretch': { 'justify-content': 'stretch' },
1227
1229
  })
1228
1230
  },
1229
1231