@blockle/blocks-reset 0.21.3 → 0.21.5

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/dist/index.cjs CHANGED
@@ -1,2 +1 @@
1
1
  "use strict";
2
- require("./reset.css.cjs");
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- import "./reset.css.js";
1
+
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@blockle/blocks-reset",
3
- "version": "0.21.3",
3
+ "version": "0.21.5",
4
4
  "description": "CSS reset for Blockle",
5
5
  "type": "module",
6
6
  "sideEffects": [
7
- "reset.css.*"
7
+ "./dist/reset.css.*"
8
8
  ],
9
9
  "exports": {
10
10
  ".": {
@@ -1,38 +0,0 @@
1
- "use strict";
2
- const fileScope = require("@vanilla-extract/css/fileScope");
3
- const css = require("@vanilla-extract/css");
4
- fileScope.setFileScope("src/reset.css.ts", "@blockle/blocks-reset");
5
- css.globalStyle(":where(*, *::before, *::after)", {
6
- boxSizing: "inherit",
7
- WebkitTapHighlightColor: "transparent"
8
- });
9
- css.globalStyle(":where(html)", {
10
- lineHeight: 1.5,
11
- boxSizing: "border-box",
12
- WebkitFontSmoothing: "antialiased"
13
- });
14
- css.globalStyle(":where(body)", {
15
- margin: 0,
16
- padding: 0,
17
- fontFamily: "Calibri, sans-serif"
18
- });
19
- css.globalStyle(":where(button, input, optgroup, select, textarea)", {
20
- fontFamily: "inherit",
21
- fontSize: "100%",
22
- lineHeight: "inherit",
23
- margin: 0,
24
- padding: 0
25
- });
26
- css.globalStyle(":where(p, ul, ol, pre, blockquote)", {
27
- margin: 0,
28
- padding: 0
29
- });
30
- css.globalStyle(":where(h1, h2, h3, h4, h5, h6)", {
31
- margin: 0,
32
- padding: 0,
33
- fontSize: "inherit"
34
- });
35
- css.globalStyle(":where(pre)", {
36
- whiteSpace: "pre-wrap"
37
- });
38
- fileScope.endFileScope();
package/dist/reset.css.js DELETED
@@ -1,37 +0,0 @@
1
- import { setFileScope, endFileScope } from "@vanilla-extract/css/fileScope";
2
- import { globalStyle } from "@vanilla-extract/css";
3
- setFileScope("src/reset.css.ts", "@blockle/blocks-reset");
4
- globalStyle(":where(*, *::before, *::after)", {
5
- boxSizing: "inherit",
6
- WebkitTapHighlightColor: "transparent"
7
- });
8
- globalStyle(":where(html)", {
9
- lineHeight: 1.5,
10
- boxSizing: "border-box",
11
- WebkitFontSmoothing: "antialiased"
12
- });
13
- globalStyle(":where(body)", {
14
- margin: 0,
15
- padding: 0,
16
- fontFamily: "Calibri, sans-serif"
17
- });
18
- globalStyle(":where(button, input, optgroup, select, textarea)", {
19
- fontFamily: "inherit",
20
- fontSize: "100%",
21
- lineHeight: "inherit",
22
- margin: 0,
23
- padding: 0
24
- });
25
- globalStyle(":where(p, ul, ol, pre, blockquote)", {
26
- margin: 0,
27
- padding: 0
28
- });
29
- globalStyle(":where(h1, h2, h3, h4, h5, h6)", {
30
- margin: 0,
31
- padding: 0,
32
- fontSize: "inherit"
33
- });
34
- globalStyle(":where(pre)", {
35
- whiteSpace: "pre-wrap"
36
- });
37
- endFileScope();