@unocss/reset 0.26.2 → 0.27.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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/tailwind.css +4 -0
package/package.json CHANGED
@@ -1,25 +1,25 @@
1
1
  {
2
2
  "name": "@unocss/reset",
3
- "version": "0.26.2",
3
+ "version": "0.27.0",
4
4
  "description": "Collection of CSS reseting",
5
5
  "keywords": [],
6
6
  "homepage": "https://github.com/unocss/unocss#readme",
7
7
  "bugs": {
8
8
  "url": "https://github.com/unocss/unocss/issues"
9
9
  },
10
+ "license": "MIT",
10
11
  "repository": {
11
12
  "type": "git",
12
13
  "url": "git+https://github.com/unocss/unocss.git"
13
14
  },
14
15
  "funding": "https://github.com/sponsors/antfu",
15
- "license": "MIT",
16
16
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
17
- "exports": {
18
- "./*": "./*"
19
- },
20
17
  "files": [
21
18
  "**/*.css"
22
19
  ],
20
+ "exports": {
21
+ "./*": "./*"
22
+ },
23
23
  "devDependencies": {
24
24
  "@csstools/normalize.css": "^12.0.0",
25
25
  "sanitize.css": "^13.0.0"
package/tailwind.css CHANGED
@@ -360,3 +360,7 @@ Ensure the default browser behavior of the `hidden` attribute.
360
360
  [hidden] {
361
361
  display: none;
362
362
  }
363
+
364
+ .dark {
365
+ color-schema: dark;
366
+ }