Commit 71ef48658c0974fbd79de515840700882a00fcf6

Authored by 梁灏
1 parent 7a05b6e5

fixed #860

examples/routers/select.vue
... ... @@ -90,6 +90,8 @@
90 90 <Row>
91 91 <Col span="12" style="padding-right:10px">
92 92 <Select
  93 + size="small"
  94 + placeholder="提示提示"
93 95 v-model="model13"
94 96 filterable
95 97 remote
... ...
src/styles/components/select.less
... ... @@ -161,7 +161,8 @@
161 161 }
162 162  
163 163 &-small &-input{
164   - height: @input-height-small;
  164 + height: @input-height-small - 2px;
  165 + line-height: @input-height-small - 2px;
165 166 }
166 167  
167 168 &-multiple &-input{
... ...