paris 0.10.0 → 0.10.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # paris
2
2
 
3
+ ## 0.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - acfbb1a: Theme: adjust tailwind preflight button style specificity
8
+
3
9
  ## 0.10.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "paris",
3
3
  "author": "Sanil Chawla <sanil@slingshot.fm> (https://sanil.co)",
4
4
  "description": "Paris is Slingshot's React design system. It's a collection of reusable components, design tokens, and guidelines that help us build consistent, accessible, and performant user interfaces.",
5
- "version": "0.10.0",
5
+ "version": "0.10.1",
6
6
  "homepage": "https://paris.slingshot.fm",
7
7
  "license": "MIT",
8
8
  "repository": {
@@ -188,9 +188,9 @@ select {
188
188
  */
189
189
 
190
190
  button,
191
- [type='button'],
192
- [type='reset'],
193
- [type='submit'] {
191
+ input:where([type='button']),
192
+ input:where([type='reset']),
193
+ input:where([type='submit']) {
194
194
  -webkit-appearance: button; /* 1 */
195
195
  background-color: transparent; /* 2 */
196
196
  background-image: none; /* 2 */