@10yun/cv-mobile-ui 0.4.8 → 0.4.9
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/README.md +1 -1
- package/docs.md +0 -3
- package/package.json +1 -1
- package/ui-cv/cv-box/cv-box.vue +0 -1
- package/ui-cv/cv-code-sms/cv-code-sms.vue +0 -4
- package/ui-cv/cv-input-btn/cv-input-btn.vue +9 -11
package/README.md
CHANGED
package/docs.md
CHANGED
package/package.json
CHANGED
package/ui-cv/cv-box/cv-box.vue
CHANGED
|
@@ -35,7 +35,7 @@ export default {
|
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
37
|
props: {
|
|
38
|
-
|
|
38
|
+
placeholder: {
|
|
39
39
|
type: String,
|
|
40
40
|
default: ''
|
|
41
41
|
},
|
|
@@ -96,29 +96,27 @@ export default {
|
|
|
96
96
|
|
|
97
97
|
<style>
|
|
98
98
|
.cv-code-area {
|
|
99
|
-
height:
|
|
100
|
-
|
|
101
|
-
|
|
99
|
+
height: 36px;
|
|
100
|
+
display: flex;
|
|
101
|
+
justify-content: space-evenly;
|
|
102
|
+
align-items: center;
|
|
103
|
+
flex-direction: row;
|
|
102
104
|
}
|
|
103
105
|
.cv-code-input-area {
|
|
104
106
|
width: calc(100% - 80px - 10px);
|
|
105
|
-
float: left;
|
|
106
107
|
}
|
|
107
108
|
.cv-code-input-item {
|
|
108
109
|
height: 35px;
|
|
109
|
-
line-height: 35px;
|
|
110
|
+
/* line-height: 35px; */
|
|
110
111
|
}
|
|
111
112
|
.cv-code-input-item-placeholder {
|
|
112
|
-
font-size:
|
|
113
|
+
font-size: 12px;
|
|
113
114
|
}
|
|
114
115
|
.cv-code-button-area {
|
|
115
116
|
width: 80px;
|
|
116
|
-
|
|
117
|
-
height: 35px;
|
|
117
|
+
display: flex;
|
|
118
118
|
}
|
|
119
119
|
.cv-code-button-item {
|
|
120
|
-
height: 35px;
|
|
121
|
-
line-height: 35px;
|
|
122
120
|
font-size: 12px;
|
|
123
121
|
background-color: #007aff;
|
|
124
122
|
color: #ffffff;
|