@alifd/chat 0.3.0-beta.13 → 0.3.0-beta.14
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/es/html-render/main.scss +4 -1
- package/es/index.js +1 -1
- package/lib/html-render/main.scss +4 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/es/html-render/main.scss
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
// color: hsla(230, 10%, 11%, 0.9);
|
|
6
6
|
word-break: break-word;
|
|
7
7
|
font-family: inherit;
|
|
8
|
+
color: $color-text1-4;
|
|
8
9
|
|
|
9
10
|
&.loose {
|
|
10
11
|
font-size: 16px;
|
|
@@ -111,7 +112,7 @@
|
|
|
111
112
|
padding: .12em .25em;
|
|
112
113
|
border-radius: 3px;
|
|
113
114
|
font-size: 86%;
|
|
114
|
-
background:
|
|
115
|
+
background: $color-fill1-2;
|
|
115
116
|
}
|
|
116
117
|
|
|
117
118
|
pre {
|
|
@@ -130,6 +131,8 @@
|
|
|
130
131
|
font-size: inherit;
|
|
131
132
|
background: none;
|
|
132
133
|
border-radius: 0;
|
|
134
|
+
text-shadow: none;
|
|
135
|
+
color: $color-text1-3;
|
|
133
136
|
}
|
|
134
137
|
}
|
|
135
138
|
|
package/es/index.js
CHANGED
|
@@ -20,4 +20,4 @@ export { default as CardLoading } from './card-loading';
|
|
|
20
20
|
export { default as Origin } from './origin';
|
|
21
21
|
export { default as Loading } from './loading';
|
|
22
22
|
export { default as Drawer } from './drawer';
|
|
23
|
-
export const version = '0.3.0-beta.
|
|
23
|
+
export const version = '0.3.0-beta.14';
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
// color: hsla(230, 10%, 11%, 0.9);
|
|
6
6
|
word-break: break-word;
|
|
7
7
|
font-family: inherit;
|
|
8
|
+
color: $color-text1-4;
|
|
8
9
|
|
|
9
10
|
&.loose {
|
|
10
11
|
font-size: 16px;
|
|
@@ -111,7 +112,7 @@
|
|
|
111
112
|
padding: .12em .25em;
|
|
112
113
|
border-radius: 3px;
|
|
113
114
|
font-size: 86%;
|
|
114
|
-
background:
|
|
115
|
+
background: $color-fill1-2;
|
|
115
116
|
}
|
|
116
117
|
|
|
117
118
|
pre {
|
|
@@ -130,6 +131,8 @@
|
|
|
130
131
|
font-size: inherit;
|
|
131
132
|
background: none;
|
|
132
133
|
border-radius: 0;
|
|
134
|
+
text-shadow: none;
|
|
135
|
+
color: $color-text1-3;
|
|
133
136
|
}
|
|
134
137
|
}
|
|
135
138
|
|
package/lib/index.js
CHANGED
|
@@ -46,4 +46,4 @@ var loading_1 = require("./loading");
|
|
|
46
46
|
Object.defineProperty(exports, "Loading", { enumerable: true, get: function () { return tslib_1.__importDefault(loading_1).default; } });
|
|
47
47
|
var drawer_1 = require("./drawer");
|
|
48
48
|
Object.defineProperty(exports, "Drawer", { enumerable: true, get: function () { return tslib_1.__importDefault(drawer_1).default; } });
|
|
49
|
-
exports.version = '0.3.0-beta.
|
|
49
|
+
exports.version = '0.3.0-beta.14';
|