@kevinmarrec/unocss-config 1.14.0 → 1.16.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/README.md CHANGED
@@ -18,17 +18,6 @@ Opinionated [UnoCSS](https://unocss.dev) [config](https://unocss.dev/config).
18
18
  - [UnoCSS Directives transformer](https://unocss.dev/transformers/directives)
19
19
  - [UnoCSS Variant group transformer](https://unocss.dev/transformers/variant-group)
20
20
 
21
- - Adds a custom layer to enforce full height on top-level elements:
22
-
23
- ```css
24
- /* layer: default */
25
- html,
26
- body,
27
- #app {
28
- height: 100%;
29
- }
30
- ```
31
-
32
21
  - Hoists `fonts` and `icons` preset options to the config level
33
22
 
34
23
  ## Usage
package/dist/index.mjs CHANGED
@@ -17,10 +17,6 @@ function useConfig(config = {}) {
17
17
  })
18
18
  ],
19
19
  transformers: [transformerDirectives(), transformerVariantGroup()],
20
- preflights: [{
21
- layer: "default",
22
- getCSS: () => "html, body, #app {height: 100%;}"
23
- }],
24
20
  ...userConfig
25
21
  };
26
22
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kevinmarrec/unocss-config",
3
3
  "type": "module",
4
- "version": "1.14.0",
4
+ "version": "1.16.0",
5
5
  "description": "Opinionated UnoCSS config.",
6
6
  "author": "Kevin Marrec <kevin@marrec.io>",
7
7
  "license": "MIT",
@@ -30,11 +30,11 @@
30
30
  "unocss": ">=66.6.0"
31
31
  },
32
32
  "dependencies": {
33
- "@unocss/core": "^66.6.7",
34
- "@unocss/preset-icons": "^66.6.7",
35
- "@unocss/preset-web-fonts": "^66.6.7",
36
- "@unocss/preset-wind4": "^66.6.7",
37
- "@unocss/transformer-directives": "^66.6.7",
38
- "@unocss/transformer-variant-group": "^66.6.7"
33
+ "@unocss/core": "^66.6.8",
34
+ "@unocss/preset-icons": "^66.6.8",
35
+ "@unocss/preset-web-fonts": "^66.6.8",
36
+ "@unocss/preset-wind4": "^66.6.8",
37
+ "@unocss/transformer-directives": "^66.6.8",
38
+ "@unocss/transformer-variant-group": "^66.6.8"
39
39
  }
40
40
  }