stellar-ui-plus 1.22.0 → 1.22.2
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.
|
@@ -42,15 +42,15 @@ const cmpDataStyle = computed(() => {
|
|
|
42
42
|
if (props.showUserInfo && props.showCode) {
|
|
43
43
|
if (props.list.length == 1) {
|
|
44
44
|
style['justify-content'] = 'center';
|
|
45
|
-
style.margin = '0 0 0
|
|
45
|
+
style.margin = '0 0 0 24rpx';
|
|
46
46
|
}
|
|
47
47
|
if (props.list.length == 2) {
|
|
48
48
|
style['justify-content'] = 'space-between';
|
|
49
|
-
style.margin = '0 0 0
|
|
49
|
+
style.margin = '0 0 0 24rpx';
|
|
50
50
|
}
|
|
51
51
|
if (props.list.length == 3) {
|
|
52
52
|
style['justify-content'] = 'space-between';
|
|
53
|
-
style.margin = '0 0 0
|
|
53
|
+
style.margin = '0 0 0 12rpx';
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
if (!props.showUserInfo && props.showCode) {
|
|
@@ -59,7 +59,7 @@ const cmpDataStyle = computed(() => {
|
|
|
59
59
|
}
|
|
60
60
|
if (props.showUserInfo && !props.showCode) {
|
|
61
61
|
style['justify-content'] = 'space-between';
|
|
62
|
-
style.margin = '0 0 0
|
|
62
|
+
style.margin = '0 0 0 24rpx';
|
|
63
63
|
}
|
|
64
64
|
if (!props.showUserInfo && !props.showCode) {
|
|
65
65
|
style['justify-content'] = 'space-around';
|
|
@@ -159,6 +159,8 @@ function loginBtnClick() {
|
|
|
159
159
|
.user-box {
|
|
160
160
|
display: flex;
|
|
161
161
|
flex-direction: row;
|
|
162
|
+
width: 280rpx;
|
|
163
|
+
align-items: center;
|
|
162
164
|
|
|
163
165
|
.left {
|
|
164
166
|
width: 92rpx;
|
|
@@ -167,6 +169,7 @@ function loginBtnClick() {
|
|
|
167
169
|
border-radius: 50%;
|
|
168
170
|
overflow: hidden;
|
|
169
171
|
margin-right: 24rpx;
|
|
172
|
+
flex-shrink: 0;
|
|
170
173
|
}
|
|
171
174
|
.right {
|
|
172
175
|
display: flex;
|
|
@@ -212,6 +215,7 @@ function loginBtnClick() {
|
|
|
212
215
|
color: #000000;
|
|
213
216
|
text-align: center;
|
|
214
217
|
margin-top: 12rpx;
|
|
218
|
+
word-break: keep-all;
|
|
215
219
|
}
|
|
216
220
|
|
|
217
221
|
.value {
|
|
@@ -249,6 +253,7 @@ function loginBtnClick() {
|
|
|
249
253
|
font-size: 24rpx;
|
|
250
254
|
color: #ec3e1a;
|
|
251
255
|
text-align: center;
|
|
256
|
+
word-break: keep-all;
|
|
252
257
|
}
|
|
253
258
|
}
|
|
254
259
|
}
|