@varlet/cli 3.3.5 → 3.3.6
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/lib/node/config/varlet.config.d.ts +1 -1
- package/lib/node/config/varlet.config.js +1 -1
- package/lib/node/config/varlet.default.config.js +4 -4
- package/package.json +9 -9
- package/site/index.html +78 -95
- package/site/mobile.html +61 -78
- package/site/pc/components/code-example/codeExample.less +3 -3
- package/site/tsconfig.json +1 -1
- package/site/types.ts +2 -2
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
position: relative;
|
|
5
5
|
border: thin solid var(--site-config-color-hl-border);
|
|
6
6
|
border-radius: 4px;
|
|
7
|
-
transition: border .25s;
|
|
7
|
+
transition: border 0.25s;
|
|
8
8
|
|
|
9
9
|
&:hover {
|
|
10
10
|
.var-site-code-example__toolbar {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
right: 10px;
|
|
21
21
|
top: 10px;
|
|
22
22
|
opacity: 0;
|
|
23
|
-
transition: .25s all;
|
|
23
|
+
transition: 0.25s all;
|
|
24
24
|
|
|
25
25
|
button {
|
|
26
26
|
color: var(--site-config-color-hl-code) !important;
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
&__code {
|
|
31
|
-
transition: all .25s;
|
|
31
|
+
transition: all 0.25s;
|
|
32
32
|
overflow: hidden;
|
|
33
33
|
border-radius: var(--site-config-code-example-border-radius);
|
|
34
34
|
}
|
package/site/tsconfig.json
CHANGED
package/site/types.ts
CHANGED