@ysgroup/ui 0.1.2 → 0.1.4
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 +1 -1
- package/src/components/YsLoginPage.vue +3 -12
- package/src/index.ts +1 -1
package/package.json
CHANGED
|
@@ -73,25 +73,21 @@ async function submit() {
|
|
|
73
73
|
|
|
74
74
|
<style scoped>
|
|
75
75
|
.ys-login {
|
|
76
|
-
|
|
77
|
-
min-height: 100dvh;
|
|
76
|
+
height: 100vh;
|
|
78
77
|
display: flex;
|
|
79
78
|
align-items: center;
|
|
80
79
|
justify-content: center;
|
|
81
|
-
box-sizing: border-box;
|
|
82
|
-
padding: 16px;
|
|
83
80
|
background: var(--ys-color-bg);
|
|
84
81
|
}
|
|
85
82
|
.ys-login__card {
|
|
86
|
-
width:
|
|
87
|
-
box-sizing: border-box;
|
|
83
|
+
width: 360px;
|
|
88
84
|
padding: 40px 32px;
|
|
89
85
|
background: var(--ys-color-bg-elevated);
|
|
90
86
|
border: 1px solid var(--ys-color-border);
|
|
91
87
|
border-radius: var(--ys-radius-m);
|
|
92
88
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
|
|
93
89
|
text-align: center;
|
|
94
|
-
transform: translateY(
|
|
90
|
+
transform: translateY(-200px);
|
|
95
91
|
}
|
|
96
92
|
.ys-login__logo {
|
|
97
93
|
width: 68px;
|
|
@@ -112,11 +108,6 @@ async function submit() {
|
|
|
112
108
|
}
|
|
113
109
|
|
|
114
110
|
@media (max-height: 640px) {
|
|
115
|
-
.ys-login {
|
|
116
|
-
align-items: flex-start;
|
|
117
|
-
overflow-y: auto;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
111
|
.ys-login__card {
|
|
121
112
|
transform: none;
|
|
122
113
|
}
|
package/src/index.ts
CHANGED
|
@@ -8,4 +8,4 @@ export { default as YsSettingsCenterDialog } from "./components/YsSettingsCenter
|
|
|
8
8
|
export { default as YsPortalGrid } from "./components/YsPortalGrid.vue";
|
|
9
9
|
export { enumOptions, enumLabel, type EnumOption } from "./tokens-runtime";
|
|
10
10
|
|
|
11
|
-
export const YS_UI_VERSION = "0.1.
|
|
11
|
+
export const YS_UI_VERSION = "0.1.4";
|