@varlet/cli 1.27.17 → 1.27.18
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@varlet/cli",
|
|
3
|
-
"version": "1.27.
|
|
3
|
+
"version": "1.27.18",
|
|
4
4
|
"description": "cli of varlet",
|
|
5
5
|
"bin": {
|
|
6
6
|
"varlet-cli": "./lib/index.js"
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"url": "https://github.com/varletjs/varlet/issues"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@varlet/icons": "1.27.
|
|
32
|
-
"@varlet/shared": "1.27.
|
|
33
|
-
"@varlet/markdown-vite-plugin": "1.27.
|
|
34
|
-
"@varlet/touch-emulator": "1.27.
|
|
31
|
+
"@varlet/icons": "1.27.18",
|
|
32
|
+
"@varlet/shared": "1.27.18",
|
|
33
|
+
"@varlet/markdown-vite-plugin": "1.27.18",
|
|
34
|
+
"@varlet/touch-emulator": "1.27.18",
|
|
35
35
|
"@babel/core": "^7.14.8",
|
|
36
36
|
"@babel/helper-plugin-utils": "^7.14.5",
|
|
37
37
|
"@babel/preset-env": "^7.14.8",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"slash": "^3.0.0",
|
|
61
61
|
"ts-jest": "^26.5.1",
|
|
62
62
|
"typescript": "^4.4.4",
|
|
63
|
-
"vite": "2.9.
|
|
63
|
+
"vite": "2.9.14",
|
|
64
64
|
"vite-plugin-html": "^2.1.0",
|
|
65
65
|
"vue": "3.2.25",
|
|
66
66
|
"vue-jest": "^5.0.0-alpha.8"
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"@types/semver": "^7.3.9"
|
|
77
77
|
},
|
|
78
78
|
"peerDependencies": {
|
|
79
|
-
"@varlet/touch-emulator": "1.27.
|
|
79
|
+
"@varlet/touch-emulator": "1.27.18",
|
|
80
80
|
"@vue/test-utils": "^2.0.0-rc.6",
|
|
81
81
|
"clipboard": "^2.0.6",
|
|
82
82
|
"live-server": "^1.2.1",
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
height: 100vh;
|
|
5
5
|
box-sizing: border-box;
|
|
6
6
|
min-width: 1200px;
|
|
7
|
+
min-height: 460px;
|
|
7
8
|
background: var(--site-config-color-home-page-background);
|
|
8
9
|
overflow: hidden;
|
|
9
10
|
display: flex;
|
|
@@ -120,11 +121,6 @@
|
|
|
120
121
|
width: 35vw;
|
|
121
122
|
min-width: 500px;
|
|
122
123
|
|
|
123
|
-
.description-container {
|
|
124
|
-
display: flex;
|
|
125
|
-
margin-bottom: 35px;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
124
|
.logo-container {
|
|
129
125
|
margin-right: 20px;
|
|
130
126
|
}
|
|
@@ -165,30 +161,71 @@
|
|
|
165
161
|
margin-left: 10px;
|
|
166
162
|
}
|
|
167
163
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
164
|
+
@media all and (max-width: 2560px) {
|
|
165
|
+
.description-container {
|
|
166
|
+
display: flex;
|
|
167
|
+
margin-bottom: 40px;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.base-title {
|
|
171
|
+
font-size: 110px;
|
|
172
|
+
line-height: 72px;
|
|
173
|
+
font-weight: 500;
|
|
174
|
+
margin-top: 21px;
|
|
175
|
+
animation: fade-in .75s forwards;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.base-description {
|
|
179
|
+
font-size: 20px;
|
|
180
|
+
line-height: 38px;
|
|
181
|
+
padding-left: 4px;
|
|
182
|
+
font-weight: 500;
|
|
183
|
+
margin-bottom: 43px;
|
|
184
|
+
letter-spacing: 1px;
|
|
185
|
+
animation: fade-in .75s forwards;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.logo-box {
|
|
189
|
+
width: 120px;
|
|
190
|
+
height: 120px;
|
|
191
|
+
flex-shrink: 0;
|
|
192
|
+
margin-right: 30px;
|
|
193
|
+
z-index: 2;
|
|
194
|
+
}
|
|
174
195
|
}
|
|
175
196
|
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
197
|
+
@media all and (max-width: 1920px) {
|
|
198
|
+
|
|
199
|
+
.description-container {
|
|
200
|
+
display: flex;
|
|
201
|
+
margin-bottom: 35px;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.base-title {
|
|
205
|
+
font-size: 84px;
|
|
206
|
+
line-height: 72px;
|
|
207
|
+
font-weight: 500;
|
|
208
|
+
margin-top: 8px;
|
|
209
|
+
animation: fade-in .75s forwards;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.base-description {
|
|
213
|
+
font-size: 16px;
|
|
214
|
+
line-height: 28px;
|
|
215
|
+
padding-left: 4px;
|
|
216
|
+
font-weight: 500;
|
|
217
|
+
margin-bottom: 45px;
|
|
218
|
+
letter-spacing: 1px;
|
|
219
|
+
animation: fade-in .75s forwards;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.logo-box {
|
|
223
|
+
width: 90px;
|
|
224
|
+
height: 90px;
|
|
225
|
+
flex-shrink: 0;
|
|
226
|
+
margin-right: 25px;
|
|
227
|
+
z-index: 2;
|
|
228
|
+
}
|
|
192
229
|
}
|
|
193
230
|
}
|
|
194
|
-
}
|
|
231
|
+
}
|
|
@@ -102,7 +102,7 @@ watch(() => route.path, setLocale, { immediate: true })
|
|
|
102
102
|
<div class="profile-container">
|
|
103
103
|
<div class="container-box">
|
|
104
104
|
<div class="description-container">
|
|
105
|
-
<animation-box class="logo" />
|
|
105
|
+
<animation-box class="logo-box" />
|
|
106
106
|
<div class="base-title">{{ title }}</div>
|
|
107
107
|
</div>
|
|
108
108
|
<div class="base-description">{{ description }}</div>
|