@trackunit/css-tailwind 0.0.20 → 0.0.23

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": "@trackunit/css-tailwind",
3
- "version": "0.0.20",
3
+ "version": "0.0.23",
4
4
  "main": "./index.cjs",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
@@ -159,13 +159,13 @@ var ButtonTokenDefinition = AsComponentTokenDefinition({
159
159
  "secondary-color": { backgroundColor: "rgb(var(--color-secondary-200))", color: "rgb(var(--color-secondary-600))" },
160
160
  border: { borderRadius: "var(--border-radius-lg)" },
161
161
  height: { height: "auto" },
162
- width: { width: "auto", minWidth: "auto" }
162
+ padding: { paddingLeft: "var(--spacing-2-5)", paddingRight: "var(--spacing-2-5)" }
163
163
  },
164
164
  "theme-marketing": {
165
165
  "secondary-color": { backgroundColor: "rgb(var(--color-secondary-600))", color: "rgb(var(--color-secondary-50))" },
166
166
  border: { borderRadius: "50px" },
167
167
  height: { height: "55px" },
168
- width: { width: "min-content", minWidth: "158px" }
168
+ padding: { paddingLeft: "var(--spacing-6)", paddingRight: "var(--spacing-6)" }
169
169
  }
170
170
  });
171
171