jcjy-components 0.0.63 → 0.0.65

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.
@@ -7,7 +7,7 @@
7
7
  <div v-if="isInited" class="auth-gateway-card" v-loading="confirmLoading">
8
8
  <transition name="zoom-in-center" mode="out-in">
9
9
  <el-card
10
- class="w-[90vw] lg:w-105 max-w-130"
10
+ class="w-[90vw] lg:w-[420px] max-w-[520px]"
11
11
  v-if="currentTab === TabKey.LOGIN"
12
12
  shadow="hover"
13
13
  >
@@ -19,7 +19,7 @@
19
19
  />
20
20
  </el-card>
21
21
  <el-card
22
- class="w-[90vw] lg:w-105 max-w-130"
22
+ class="w-[90vw] lg:w-[420px] max-w-[520px]"
23
23
  v-else-if="currentTab === TabKey.REGISTER"
24
24
  shadow="hover"
25
25
  >
@@ -256,16 +256,15 @@ provide("_register", _register);
256
256
  justify-content: center;
257
257
  }
258
258
 
259
- @media (min-width: 1024px) {
259
+ @media (min-width: 64rem) {
260
260
  &.default {
261
261
  justify-content: flex-end;
262
+ .auth-gateway-card {
263
+ margin-right: 6rem !important; /* lg:mr-24 = 24 * 0.25rem = 6rem */
264
+ }
262
265
  }
263
266
  }
264
267
 
265
- &.default .auth-gateway-card {
266
- margin-right: 6rem; /* lg:mr-24 = 24 * 0.25rem = 6rem */
267
- }
268
-
269
268
  &.center {
270
269
  display: flex;
271
270
  align-items: center;
@@ -278,14 +277,13 @@ provide("_register", _register);
278
277
  justify-content: center;
279
278
  }
280
279
 
281
- @media (min-width: 1024px) {
280
+ @media (min-width: 64rem) {
282
281
  &.left {
283
282
  justify-content: flex-start;
283
+ .auth-gateway-card {
284
+ margin-left: 6rem !important;
285
+ }
284
286
  }
285
287
  }
286
-
287
- &.left .auth-gateway-card {
288
- margin-left: 6rem; /* lg:ml-24 = 24 * 0.25rem = 6rem */
289
- }
290
288
  }
291
289
  </style>
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "jcjy-components",
3
- "version": "0.0.63",
3
+ "version": "0.0.65",
4
4
  "description": "Vue 3 组件库",
5
5
  "type": "module",
6
- "main": "./index.ts",
6
+ "main": "./dist/index.ts",
7
7
  "files": [
8
8
  "dist",
9
9
  "package.json"