@new-ui/reset 0.1.0 → 0.1.2
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 +3 -2
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/package.json +8 -9
- package/src/_reset.scss +26 -10
- package/src/index.scss +1 -1
package/README.md
CHANGED
package/dist/index.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
*,:before,:after{box-sizing:border-box}html{text-size-adjust:none;vertical-align:baseline}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0;
|
|
1
|
+
*,:before,:after{box-sizing:border-box}html{-moz-text-size-adjust:none;text-size-adjust:none;vertical-align:baseline}body,h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd{margin:0;padding:0}ul[role=list],ol[role=list]{list-style:none}body{min-height:100vh;line-height:1.5}h1,h2,h3,h4,h5,h6{text-wrap:balance}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,textarea,button,select{font-family:inherit;font-size:inherit;margin:0}table{border-collapse:collapse;border-spacing:0}:target{scroll-margin-block:5ex}
|
|
2
2
|
/*# sourceMappingURL=index.css.map */
|
package/dist/index.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":"ACAA,
|
|
1
|
+
{"mappings":"ACAA,uCAMA,8EAKA,oEAgBA,4CAKA,sCAKA,oCASA,6CAIA,yCAMA,4EASA,gDAKA","sources":["index.css","src/_reset.scss"],"sourcesContent":["*, :before, :after {\n box-sizing: border-box;\n}\n\nhtml {\n -moz-text-size-adjust: none;\n text-size-adjust: none;\n vertical-align: baseline;\n}\n\nbody, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {\n margin: 0;\n padding: 0;\n}\n\nul[role=\"list\"], ol[role=\"list\"] {\n list-style: none;\n}\n\nbody {\n min-height: 100vh;\n line-height: 1.5;\n}\n\nh1, h2, h3, h4, h5, h6 {\n text-wrap: balance;\n}\n\na:not([class]) {\n text-decoration-skip-ink: auto;\n}\n\nimg, picture {\n max-width: 100%;\n display: block;\n}\n\ninput, textarea, button, select {\n font-family: inherit;\n font-size: inherit;\n margin: 0;\n}\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\n:target {\n scroll-margin-block: 5ex;\n}\n/*# sourceMappingURL=index.css.map */\n","*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\nhtml {\n text-size-adjust: none;\n vertical-align: baseline;\n}\n\nbody,\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\np,\nfigure,\nblockquote,\ndl,\ndd {\n margin: 0;\n padding: 0;\n}\n\nul[role='list'],\nol[role='list'] {\n list-style: none;\n}\n\nbody {\n min-height: 100vh;\n line-height: 1.5;\n}\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n text-wrap: balance;\n}\n\na:not([class]) {\n text-decoration-skip-ink: auto;\n}\n\nimg,\npicture {\n max-width: 100%;\n display: block;\n}\n\ninput,\ntextarea,\nbutton,\nselect {\n font-family: inherit;\n font-size: inherit;\n margin: 0;\n}\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\n:target {\n scroll-margin-block: 5ex;\n}\n"],"names":[],"version":3,"file":"index.css.map"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@new-ui/reset",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "SCSS, CSS reset.",
|
|
5
5
|
"source": "src/index.scss",
|
|
6
6
|
"main": "dist/index.css",
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"LICENSE"
|
|
15
15
|
],
|
|
16
16
|
"scripts": {
|
|
17
|
-
"watch": "parcel watch",
|
|
18
|
-
"build": "parcel build"
|
|
17
|
+
"watch": "PARCEL_WORKERS=0 parcel watch",
|
|
18
|
+
"build": "PARCEL_WORKERS=0 parcel build"
|
|
19
19
|
},
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|
|
22
|
-
"url": "git+https://github.com/
|
|
22
|
+
"url": "git+https://github.com/CreateNewUI/foundations.git"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [
|
|
25
25
|
"reset",
|
|
@@ -29,12 +29,11 @@
|
|
|
29
29
|
"author": "@planetabhi",
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"bugs": {
|
|
32
|
-
"url": "https://github.com/
|
|
32
|
+
"url": "https://github.com/CreateNewUI/foundations/issues"
|
|
33
33
|
},
|
|
34
|
-
"homepage": "https://github.com/
|
|
34
|
+
"homepage": "https://github.com/CreateNewUI/foundations#readme",
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@parcel/transformer-sass": "^2.16.
|
|
37
|
-
"
|
|
38
|
-
"parcel": "^2.16.0"
|
|
36
|
+
"@parcel/transformer-sass": "^2.16.4",
|
|
37
|
+
"parcel": "^2.16.4"
|
|
39
38
|
}
|
|
40
39
|
}
|
package/src/_reset.scss
CHANGED
|
@@ -1,19 +1,28 @@
|
|
|
1
|
-
*,
|
|
1
|
+
*,
|
|
2
|
+
*::before,
|
|
3
|
+
*::after {
|
|
2
4
|
box-sizing: border-box;
|
|
3
5
|
}
|
|
4
6
|
|
|
5
7
|
html {
|
|
6
|
-
-moz-text-size-adjust: none;
|
|
7
|
-
-webkit-text-size-adjust: none;
|
|
8
8
|
text-size-adjust: none;
|
|
9
9
|
vertical-align: baseline;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
body,
|
|
13
|
-
|
|
12
|
+
body,
|
|
13
|
+
h1,
|
|
14
|
+
h2,
|
|
15
|
+
h3,
|
|
16
|
+
h4,
|
|
17
|
+
h5,
|
|
18
|
+
h6,
|
|
19
|
+
p,
|
|
20
|
+
figure,
|
|
21
|
+
blockquote,
|
|
22
|
+
dl,
|
|
23
|
+
dd {
|
|
14
24
|
margin: 0;
|
|
15
25
|
padding: 0;
|
|
16
|
-
margin-block-end: 0;
|
|
17
26
|
}
|
|
18
27
|
|
|
19
28
|
ul[role='list'],
|
|
@@ -26,8 +35,12 @@ body {
|
|
|
26
35
|
line-height: 1.5;
|
|
27
36
|
}
|
|
28
37
|
|
|
29
|
-
h1,
|
|
30
|
-
|
|
38
|
+
h1,
|
|
39
|
+
h2,
|
|
40
|
+
h3,
|
|
41
|
+
h4,
|
|
42
|
+
h5,
|
|
43
|
+
h6 {
|
|
31
44
|
text-wrap: balance;
|
|
32
45
|
}
|
|
33
46
|
|
|
@@ -41,7 +54,10 @@ picture {
|
|
|
41
54
|
display: block;
|
|
42
55
|
}
|
|
43
56
|
|
|
44
|
-
input,
|
|
57
|
+
input,
|
|
58
|
+
textarea,
|
|
59
|
+
button,
|
|
60
|
+
select {
|
|
45
61
|
font-family: inherit;
|
|
46
62
|
font-size: inherit;
|
|
47
63
|
margin: 0;
|
|
@@ -54,4 +70,4 @@ table {
|
|
|
54
70
|
|
|
55
71
|
:target {
|
|
56
72
|
scroll-margin-block: 5ex;
|
|
57
|
-
}
|
|
73
|
+
}
|
package/src/index.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'reset';
|
|
1
|
+
@use 'reset';
|