@onereach/styles 2.33.0 → 2.33.1-beta.2107.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onereach/styles",
3
- "version": "2.33.0",
3
+ "version": "2.33.1-beta.2107.0",
4
4
  "description": "Styles for or-ui-next",
5
5
  "license": "UNLICENSED",
6
6
  "main": "./main.css",
@@ -53,6 +53,5 @@
53
53
  },
54
54
  "publishConfig": {
55
55
  "access": "public"
56
- },
57
- "gitHead": "299060820141c34359b8a439b36a4a737b2f6f51"
56
+ }
58
57
  }
@@ -131,7 +131,7 @@ module.exports = {
131
131
  },
132
132
 
133
133
  borderRadius: {
134
- '0': '0px',
134
+ 'none': '0px',
135
135
  ...parseBorderRadiusTokens(borderRadiusTokens),
136
136
  'full': '9999px',
137
137
  },
@@ -218,6 +218,7 @@ module.exports = {
218
218
 
219
219
  addVariant('children', ['& > *']);
220
220
  addVariant('first-child', ['& > *:first-child']);
221
+ addVariant('intermediate-child', ['& > *:not(:first-child):not(:last-child)']);
221
222
  addVariant('last-child', ['& > *:last-child']);
222
223
 
223
224
  addVariant('links', ['& :any-link']);