@new-ui/reset 0.1.0 → 0.1.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/README.md +3 -2
- package/dist/index.css.map +1 -1
- package/package.json +7 -7
- package/src/_reset.scss +22 -9
- package/src/index.scss +1 -1
package/README.md
CHANGED
package/dist/index.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":"ACAA,
|
|
1
|
+
{"mappings":"ACAA,uCAMA,mDAKA,iFAeA,4CAKA,sCAKA,8BAOA,6CAIA,yCAMA,4EASA,gDAKA","sources":["index.css","src/_reset.scss"],"sourcesContent":["*, :before, :after {\n box-sizing: border-box;\n}\n\nhtml {\n text-size-adjust: none;\n vertical-align: baseline;\n}\n\nbody, h1, h2, h3, h4, p, figure, blockquote, dl, dd {\n margin: 0;\n margin-block-end: 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 {\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,\np,\nfigure,\nblockquote,\ndl,\ndd {\n margin: 0;\n padding: 0;\n margin-block-end: 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 {\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.1",
|
|
4
4
|
"description": "SCSS, CSS reset.",
|
|
5
5
|
"source": "src/index.scss",
|
|
6
6
|
"main": "dist/index.css",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|
|
22
|
-
"url": "git+https://github.com/
|
|
22
|
+
"url": "git+https://github.com/create-new-ui/foundations.git"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [
|
|
25
25
|
"reset",
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
"author": "@planetabhi",
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"bugs": {
|
|
32
|
-
"url": "https://github.com/
|
|
32
|
+
"url": "https://github.com/create-new-ui/foundations/issues"
|
|
33
33
|
},
|
|
34
|
-
"homepage": "https://github.com/
|
|
34
|
+
"homepage": "https://github.com/create-new-ui/foundations#readme",
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@parcel/transformer-sass": "^2.16.
|
|
37
|
-
"autoprefixer": "^10.4.
|
|
38
|
-
"parcel": "^2.16.
|
|
36
|
+
"@parcel/transformer-sass": "^2.16.3",
|
|
37
|
+
"autoprefixer": "^10.4.23",
|
|
38
|
+
"parcel": "^2.16.3"
|
|
39
39
|
}
|
|
40
40
|
}
|
package/src/_reset.scss
CHANGED
|
@@ -1,16 +1,24 @@
|
|
|
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
|
+
p,
|
|
18
|
+
figure,
|
|
19
|
+
blockquote,
|
|
20
|
+
dl,
|
|
21
|
+
dd {
|
|
14
22
|
margin: 0;
|
|
15
23
|
padding: 0;
|
|
16
24
|
margin-block-end: 0;
|
|
@@ -26,8 +34,10 @@ body {
|
|
|
26
34
|
line-height: 1.5;
|
|
27
35
|
}
|
|
28
36
|
|
|
29
|
-
h1,
|
|
30
|
-
|
|
37
|
+
h1,
|
|
38
|
+
h2,
|
|
39
|
+
h3,
|
|
40
|
+
h4 {
|
|
31
41
|
text-wrap: balance;
|
|
32
42
|
}
|
|
33
43
|
|
|
@@ -41,7 +51,10 @@ picture {
|
|
|
41
51
|
display: block;
|
|
42
52
|
}
|
|
43
53
|
|
|
44
|
-
input,
|
|
54
|
+
input,
|
|
55
|
+
textarea,
|
|
56
|
+
button,
|
|
57
|
+
select {
|
|
45
58
|
font-family: inherit;
|
|
46
59
|
font-size: inherit;
|
|
47
60
|
margin: 0;
|
|
@@ -54,4 +67,4 @@ table {
|
|
|
54
67
|
|
|
55
68
|
:target {
|
|
56
69
|
scroll-margin-block: 5ex;
|
|
57
|
-
}
|
|
70
|
+
}
|
package/src/index.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@use 'reset';
|
|
1
|
+
@use 'reset';
|