@w0s/base.css 1.2.0 → 1.3.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/dist/base.css +3 -1
- package/package.json +3 -3
package/dist/base.css
CHANGED
|
@@ -102,7 +102,7 @@ a:not(:any-link) {
|
|
|
102
102
|
input,
|
|
103
103
|
select,
|
|
104
104
|
button,
|
|
105
|
-
textarea
|
|
105
|
+
textarea,
|
|
106
106
|
::file-selector-button/* for Firefox <resource://gre-resources/forms.css> */
|
|
107
107
|
{
|
|
108
108
|
font-family: unset;
|
|
@@ -120,6 +120,8 @@ textarea {
|
|
|
120
120
|
}
|
|
121
121
|
:root {
|
|
122
122
|
box-sizing: border-box;
|
|
123
|
+
overflow-wrap: anywhere;
|
|
124
|
+
text-autospace: ideograph-alpha;
|
|
123
125
|
}
|
|
124
126
|
*,
|
|
125
127
|
::before,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@w0s/base.css",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Base CSS file used on `w0s.jp`",
|
|
5
5
|
"homepage": "https://github.com/SaekiTominaga/base.css#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"url": "git+https://github.com/SaekiTominaga/base.css.git"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
|
-
"dev": "http-server -o
|
|
21
|
+
"dev": "http-server -o demo -c-1",
|
|
22
22
|
"prebuild": "npm run lint && rimraf -g dist",
|
|
23
23
|
"build": "postcss src/base.css -d dist",
|
|
24
24
|
"postbuild": "prettier --config ./.prettierrc.mjs --ignore-path .prettierignore -w \"dist/**/*.css\"",
|
|
25
|
-
"lint": "stylelint
|
|
25
|
+
"lint": "stylelint demo/**/*.css src/**/*.css"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@w0s/stylelint-config": "^4.17.0",
|