@digigov/css 0.6.1 → 0.7.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/CHANGELOG.json +64 -0
- package/CHANGELOG.md +31 -1
- package/colors/color-values.js +57 -87
- package/colors/index.js +4 -15
- package/dist/base/index.css +5 -3
- package/dist/base.css +5 -3
- package/dist/base.js +1 -1
- package/dist/components.css +1 -1
- package/dist/components.js +1 -1
- package/dist/digigov.css +5 -3
- package/dist/utilities/index.css +1 -1
- package/dist/utilities.css +1 -1
- package/dist/utilities.js +1 -1
- package/index.js +22 -1
- package/package.json +4 -4
- package/postcss.config.js +1 -1
- package/src/base/base.css +0 -1
- package/src/base/index.css +2 -0
- package/src/components/accordion.css +3 -3
- package/src/components/breadcrumps.css +4 -4
- package/src/components/button.css +12 -22
- package/src/components/checkboxes.css +1 -1
- package/src/components/details.css +3 -3
- package/src/components/filter.css +1 -1
- package/src/components/footer.css +2 -2
- package/src/components/form.css +12 -4
- package/src/components/header.css +6 -8
- package/src/components/nav.css +2 -2
- package/src/components/notification-banner.css +2 -2
- package/src/components/radios.css +2 -9
- package/src/components/tabs.css +3 -3
- package/src/components/typography.css +4 -4
- package/src/utilities/index.css +15 -0
- package/src/utilities/utilities.css +15 -0
- package/tailwind.config.js +21 -0
- package/colors/windi.js +0 -12
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,70 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/css",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.7.2",
|
|
6
|
+
"tag": "@digigov/css_v0.7.2",
|
|
7
|
+
"date": "Wed, 02 Feb 2022 15:44:29 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "fix package.json inconsistencies by running cli-lab verify-and-update-local-package-versions"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"comment": "Fix bug that when @digigov/css is used as a tailwind plugin the order of definition for CSS rules and media queries caused visual bugs when media queries were not in the correct order."
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"dependency": [
|
|
18
|
+
{
|
|
19
|
+
"comment": "Updating dependency \"@digigov/postcss-banner\" from `0.3.9` to `0.3.10`"
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"version": "0.7.1",
|
|
26
|
+
"tag": "@digigov/css_v0.7.1",
|
|
27
|
+
"date": "Tue, 01 Feb 2022 16:41:11 GMT",
|
|
28
|
+
"comments": {
|
|
29
|
+
"patch": [
|
|
30
|
+
{
|
|
31
|
+
"comment": "Fix center of header container"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"version": "0.7.0",
|
|
38
|
+
"tag": "@digigov/css_v0.7.0",
|
|
39
|
+
"date": "Tue, 01 Feb 2022 15:38:26 GMT",
|
|
40
|
+
"comments": {
|
|
41
|
+
"minor": [
|
|
42
|
+
{
|
|
43
|
+
"comment": "update color variables, remove tailwind color palette, remove static colors at focus and update focus styling at buttons"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"comment": "implement Hidden component"
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"none": [
|
|
50
|
+
{
|
|
51
|
+
"comment": "fix bug in header container max-width overflowing the correct width"
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"version": "0.6.2",
|
|
58
|
+
"tag": "@digigov/css_v0.6.2",
|
|
59
|
+
"date": "Mon, 31 Jan 2022 13:42:21 GMT",
|
|
60
|
+
"comments": {
|
|
61
|
+
"patch": [
|
|
62
|
+
{
|
|
63
|
+
"comment": "Fix postcss.config"
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
}
|
|
67
|
+
},
|
|
4
68
|
{
|
|
5
69
|
"version": "0.6.1",
|
|
6
70
|
"tag": "@digigov/css_v0.6.1",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,36 @@
|
|
|
1
1
|
# Change Log - @digigov/css
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 02 Feb 2022 15:44:29 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.7.2
|
|
6
|
+
Wed, 02 Feb 2022 15:44:29 GMT
|
|
7
|
+
|
|
8
|
+
### Patches
|
|
9
|
+
|
|
10
|
+
- fix package.json inconsistencies by running cli-lab verify-and-update-local-package-versions
|
|
11
|
+
- Fix bug that when @digigov/css is used as a tailwind plugin the order of definition for CSS rules and media queries caused visual bugs when media queries were not in the correct order.
|
|
12
|
+
|
|
13
|
+
## 0.7.1
|
|
14
|
+
Tue, 01 Feb 2022 16:41:11 GMT
|
|
15
|
+
|
|
16
|
+
### Patches
|
|
17
|
+
|
|
18
|
+
- Fix center of header container
|
|
19
|
+
|
|
20
|
+
## 0.7.0
|
|
21
|
+
Tue, 01 Feb 2022 15:38:26 GMT
|
|
22
|
+
|
|
23
|
+
### Minor changes
|
|
24
|
+
|
|
25
|
+
- update color variables, remove tailwind color palette, remove static colors at focus and update focus styling at buttons
|
|
26
|
+
- implement Hidden component
|
|
27
|
+
|
|
28
|
+
## 0.6.2
|
|
29
|
+
Mon, 31 Jan 2022 13:42:21 GMT
|
|
30
|
+
|
|
31
|
+
### Patches
|
|
32
|
+
|
|
33
|
+
- Fix postcss.config
|
|
4
34
|
|
|
5
35
|
## 0.6.1
|
|
6
36
|
Thu, 20 Jan 2022 10:45:21 GMT
|
package/colors/color-values.js
CHANGED
|
@@ -1,92 +1,62 @@
|
|
|
1
|
-
const blue_100 = {name: "s", value: "194 100% 65%"};
|
|
2
|
-
const blue_200 = {name: "s", value: "196 100% 47%"}; // secondary
|
|
3
|
-
const blue_300 = {name: "sf", value: "204 100% 42%"};
|
|
4
|
-
const blue_400 = {name: "s3", value: "206 100% 35%"};
|
|
5
|
-
const blue_500 = {name: "s4", value: "212 100% 29%"};
|
|
6
|
-
const blue_800 = {name: "p", value: "214 100% 23% "}; // primary
|
|
7
|
-
const blue_900 = {name: "p", value: "216 100% 16% "};
|
|
8
|
-
|
|
9
|
-
const green = {name: "su", value: "152 100% 22%"};
|
|
10
|
-
const green_darker = {name: "suh", value: "152 100% 14%"};
|
|
11
|
-
const orange = {name: "wa", value: "36 100% 50%"};
|
|
12
|
-
const red = {name: "er", value: "0 63% 49%"};
|
|
13
|
-
const red_darker = {name: "er", value: "0 66% 39%"};
|
|
14
|
-
const purple = {name: "lv", value: "259 54% 37%"};
|
|
15
|
-
const white = {name: "pc", value: "0 0% 100%"};
|
|
16
|
-
const yellow = {name: "pc", value: "52 100% 50%"};
|
|
17
|
-
|
|
18
|
-
const gray_50 = {name: "g05", value: "0 0% 80%"};
|
|
19
|
-
const gray_100 = {name: "g10", value: "0 0% 92%"};
|
|
20
|
-
const gray_200 = {name: "g20", value: "300 1% 70%"};
|
|
21
|
-
const gray_300 = {name: "g30", value: "279 1% 60%"};
|
|
22
|
-
const gray_400 = {name: "g40", value: "269 2% 51%"};
|
|
23
|
-
const gray_500 = {name: "g50", value: "254 3% 43%"};
|
|
24
|
-
const gray_600 = {name: "g60", value: "240 4% 35%"};
|
|
25
|
-
const gray_700 = {name: "g70", value: "227 6% 28%"};
|
|
26
|
-
const gray_800 = {name: "g80", value: "221 12% 22%"};
|
|
27
|
-
const gray_900 = {name: "g90", value: "208 18% 16%"};
|
|
28
|
-
|
|
29
1
|
module.exports = {
|
|
30
2
|
|
|
31
|
-
"primary"
|
|
32
|
-
"primary-focus"
|
|
33
|
-
"primary-200"
|
|
34
|
-
|
|
35
|
-
"secondary-50"
|
|
36
|
-
"secondary-200"
|
|
37
|
-
"secondary"
|
|
38
|
-
"secondary-focus"
|
|
39
|
-
"secondary-400"
|
|
40
|
-
"secondary-600"
|
|
41
|
-
"secondary-800"
|
|
42
|
-
|
|
43
|
-
"content-dark"
|
|
44
|
-
"content"
|
|
45
|
-
"content-secondary"
|
|
46
|
-
|
|
47
|
-
"accent"
|
|
48
|
-
"accent-focus"
|
|
49
|
-
"accent-content"
|
|
50
|
-
|
|
51
|
-
"neutral"
|
|
52
|
-
"neutral-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
"base-
|
|
56
|
-
"base-
|
|
57
|
-
"base-
|
|
58
|
-
"base-300"
|
|
59
|
-
"base-
|
|
60
|
-
|
|
61
|
-
"base-content"
|
|
62
|
-
|
|
63
|
-
"
|
|
64
|
-
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
"
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
"
|
|
80
|
-
"gray-
|
|
81
|
-
"gray-
|
|
82
|
-
"
|
|
83
|
-
"gray-
|
|
84
|
-
"gray-
|
|
85
|
-
"gray-
|
|
86
|
-
"gray-
|
|
87
|
-
"
|
|
88
|
-
"gray-800" : gray_800,
|
|
89
|
-
"gray-900" : gray_900,
|
|
3
|
+
"primary":"#003375",
|
|
4
|
+
"primary-focus":"#004594",
|
|
5
|
+
"primary-200":"#002152",
|
|
6
|
+
|
|
7
|
+
"secondary-50":"#4dd5ff",
|
|
8
|
+
"secondary-200":"#00b0f0",
|
|
9
|
+
"secondary":"#00b0f0",
|
|
10
|
+
"secondary-focus":"#0081d6",
|
|
11
|
+
"secondary-400":"#0081d6",
|
|
12
|
+
"secondary-600":"#0065b3",
|
|
13
|
+
"secondary-800":"#004594",
|
|
14
|
+
|
|
15
|
+
"content-dark":"#fff",
|
|
16
|
+
"content":"#212930",
|
|
17
|
+
"content-secondary":"#56565d",
|
|
18
|
+
|
|
19
|
+
"accent":"#37cdbe",
|
|
20
|
+
"accent-focus":"#2aa79b",
|
|
21
|
+
"accent-content":"#fff",
|
|
22
|
+
"neutral":"#43454c",
|
|
23
|
+
"neutral-focus":"#31363f",
|
|
24
|
+
"neutral-content":"#fff",
|
|
25
|
+
|
|
26
|
+
"base-100":"#ebebeb",
|
|
27
|
+
"base-150":"#b3b2b3",
|
|
28
|
+
"base-200":"#99989a",
|
|
29
|
+
"base-300":"#56565d",
|
|
30
|
+
"base-300-content":"#fff",
|
|
31
|
+
"base-content":"#212930",
|
|
32
|
+
"base-content-secondary":"#56565d",
|
|
33
|
+
"base-content-invert":"#fff",
|
|
34
|
+
|
|
35
|
+
"info":"#00b0f0",
|
|
36
|
+
"success":"#00703c",
|
|
37
|
+
"success-hover":"#004726",
|
|
38
|
+
"warning":"#f90",
|
|
39
|
+
"error":"#cc2e2e",
|
|
40
|
+
"error-hover":"#a52222",
|
|
41
|
+
"focus":"#fd0",
|
|
42
|
+
"link":"#0081d6",
|
|
43
|
+
"link-hover":"#003375",
|
|
44
|
+
"link-visited":"#4c2b91",
|
|
45
|
+
"link-active":"#002152",
|
|
46
|
+
|
|
47
|
+
"white":"#fff",
|
|
48
|
+
"gray-50":"#ccc",
|
|
49
|
+
"gray-100":"#ebebeb",
|
|
50
|
+
"gray-200":"#b3b2b3",
|
|
51
|
+
"base-bg":"#b3b2b3",
|
|
52
|
+
"gray-300":"#99989a",
|
|
53
|
+
"gray-400":"#828085",
|
|
54
|
+
"gray-500":"#6c6a71",
|
|
55
|
+
"gray-600":"#56565d",
|
|
56
|
+
"gray-700":"#43454c",
|
|
57
|
+
"gray-800":"#31363f",
|
|
58
|
+
"gray-900":"#212930",
|
|
59
|
+
"black":"#000",
|
|
90
60
|
|
|
91
61
|
}
|
|
92
62
|
|
package/colors/index.js
CHANGED
|
@@ -1,21 +1,10 @@
|
|
|
1
|
-
const
|
|
2
|
-
const colorValues = require('./color-values')
|
|
3
|
-
|
|
1
|
+
const colorValues = require('./color-values');
|
|
4
2
|
let colorObject = {
|
|
5
3
|
"transparent": "transparent",
|
|
6
4
|
"current": "currentColor",
|
|
7
5
|
}
|
|
8
6
|
|
|
9
|
-
for (const [key,
|
|
10
|
-
colorObject[key] = ({
|
|
11
|
-
if (opacityValue !== undefined) {
|
|
12
|
-
return `hsla(var(--`+ item['name'] +`, `+ item['value'] +`) / ${opacityValue})`
|
|
13
|
-
}
|
|
14
|
-
if (opacityVariable !== undefined) {
|
|
15
|
-
return `hsla(var(--`+ item['name'] +`, `+ item['value'] +`) / var(${opacityVariable}, 1))`
|
|
16
|
-
}
|
|
17
|
-
return `hsl(var(--`+ item['name'] +`, `+ item['value']+ `))`
|
|
18
|
-
}
|
|
7
|
+
for (const [key, value] of Object.entries(colorValues)) {
|
|
8
|
+
colorObject[key] = value.startsWith('#')?value:value.startsWith('rgb')?value:`hsl(${value})`
|
|
19
9
|
}
|
|
20
|
-
|
|
21
|
-
module.exports = {...colors, ...colorObject};
|
|
10
|
+
module.exports = {...colorObject};
|
package/dist/base/index.css
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @digigov/css: 0.
|
|
2
|
+
* @digigov/css: 0.7.2
|
|
3
3
|
*
|
|
4
4
|
* Author: grnet-devs
|
|
5
|
-
* Date: 2022-
|
|
5
|
+
* Date: 2022-2-2
|
|
6
6
|
*/
|
|
7
|
-
|
|
7
|
+
/*! tailwindcss v2.2.4 | MIT License | https://tailwindcss.com*/
|
|
8
|
+
|
|
9
|
+
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */html{-moz-tab-size:4;-o-tab-size:4;tab-size:4}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji}hr{height:0;color:inherit}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}fieldset{margin:0;padding:0}ol,ul{list-style:none;margin:0;padding:0}html{font-family:Roboto,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}body{font-family:inherit;line-height:inherit}*,:after,:before{box-sizing:border-box;border:0 solid}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#a1a1aa}input:-ms-input-placeholder,textarea:-ms-input-placeholder{opacity:1;color:#a1a1aa}input::placeholder,textarea::placeholder{opacity:1;color:#a1a1aa}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}*,:after,:before{border-color:currentColor}html{-webkit-tap-highlight-color:transparent}body{font-family:Roboto,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--tw-text-opacity:1;color:rgba(33,41,48,var(--tw-text-opacity))}
|
package/dist/base.css
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @digigov/css: 0.
|
|
2
|
+
* @digigov/css: 0.7.2
|
|
3
3
|
*
|
|
4
4
|
* Author: grnet-devs
|
|
5
|
-
* Date: 2022-
|
|
5
|
+
* Date: 2022-2-2
|
|
6
6
|
*/
|
|
7
|
-
|
|
7
|
+
/*! tailwindcss v2.2.4 | MIT License | https://tailwindcss.com*/
|
|
8
|
+
|
|
9
|
+
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */html{-moz-tab-size:4;-o-tab-size:4;tab-size:4}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji}hr{height:0;color:inherit}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}fieldset{margin:0;padding:0}ol,ul{list-style:none;margin:0;padding:0}html{font-family:Roboto,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}body{font-family:inherit;line-height:inherit}*,:after,:before{box-sizing:border-box;border:0 solid}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#a1a1aa}input:-ms-input-placeholder,textarea:-ms-input-placeholder{opacity:1;color:#a1a1aa}input::placeholder,textarea::placeholder{opacity:1;color:#a1a1aa}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}*,:after,:before{border-color:currentColor}html{-webkit-tap-highlight-color:transparent}body{font-family:Roboto,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--tw-text-opacity:1;color:rgba(33,41,48,var(--tw-text-opacity))}
|
package/dist/base.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
module.exports = {"html":{"WebkitTapHighlightColor":"transparent"},"body":{"fontFamily":"Roboto,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji","-TwTextOpacity":"1","color":"
|
|
1
|
+
module.exports = {"html":{"MozTabSize":"4","OTabSize":"4","tabSize":"4","lineHeight":["1.15","1.5"],"WebkitTextSizeAdjust":"100%","fontFamily":"Roboto,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji","WebkitTapHighlightColor":"transparent"},"body":{"margin":"0","fontFamily":["system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji","inherit","Roboto,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji"],"lineHeight":"inherit","-TwTextOpacity":"1","color":"rgba(33,41,48,var(--tw-text-opacity))"},"hr":{"height":"0","color":"inherit","borderTopWidth":"1px"},"abbr[title]":{"WebkitTextDecoration":"underline dotted","textDecoration":"underline dotted"},"b,strong":{"fontWeight":"bolder"},"code,kbd,pre,samp":{"fontFamily":["ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace","ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"],"fontSize":"1em"},"small":{"fontSize":"80%"},"sub,sup":{"fontSize":"75%","lineHeight":"0","position":"relative","verticalAlign":"baseline"},"sub":{"bottom":"-.25em"},"sup":{"top":"-.5em"},"table":{"textIndent":"0","borderColor":"inherit","borderCollapse":"collapse"},"button,input,optgroup,select,textarea":{"fontFamily":"inherit","fontSize":"100%","lineHeight":["1.15","inherit"],"margin":"0","padding":"0","color":"inherit"},"button,select":{"textTransform":"none"},"[type=button],[type=reset],[type=submit],button":{"WebkitAppearance":"button"},"::-moz-focus-inner":{"borderStyle":"none","padding":"0"},":-moz-focusring":{"outline":"1px dotted ButtonText"},":-moz-ui-invalid":{"boxShadow":"none"},"legend":{"padding":"0"},"progress":{"verticalAlign":"baseline"},"::-webkit-inner-spin-button,::-webkit-outer-spin-button":{"height":"auto"},"[type=search]":{"WebkitAppearance":"textfield","outlineOffset":"-2px"},"::-webkit-search-decoration":{"WebkitAppearance":"none"},"::-webkit-file-upload-button":{"WebkitAppearance":"button","font":"inherit"},"summary":{"display":"list-item"},"blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre":{"margin":"0"},"button":{"backgroundColor":"transparent","backgroundImage":"none"},"fieldset":{"margin":"0","padding":"0"},"ol,ul":{"listStyle":"none","margin":"0","padding":"0"},"*,:after,:before":{"boxSizing":"border-box","border":"0 solid","borderColor":"currentColor"},"img":{"borderStyle":"solid"},"textarea":{"resize":"vertical"},"input::-moz-placeholder,textarea::-moz-placeholder":{"opacity":"1","color":"#a1a1aa"},"input:-ms-input-placeholder,textarea:-ms-input-placeholder":{"opacity":"1","color":"#a1a1aa"},"input::placeholder,textarea::placeholder":{"opacity":"1","color":"#a1a1aa"},"[role=button],button":{"cursor":"pointer"},"h1,h2,h3,h4,h5,h6":{"fontSize":"inherit","fontWeight":"inherit"},"a":{"color":"inherit","textDecoration":"inherit"},"audio,canvas,embed,iframe,img,object,svg,video":{"display":"block","verticalAlign":"middle"},"img,video":{"maxWidth":"100%","height":"auto"}};
|