fix: search input

This commit is contained in:
Fine 2023-04-14 16:52:10 +08:00
parent 5fca827682
commit 4ef77dda5c
4 changed files with 3 additions and 7 deletions

View File

@ -17,7 +17,7 @@ limitations under the License. -->
<div class="search">
<el-input v-model="searchText" placeholder="Search for more endpoints" @change="searchList" class="inputs">
<template #append>
<el-button @click="searchList" class="btn">
<el-button @click="searchList">
<Icon size="middle" iconName="search" />
</el-button>
</template>

View File

@ -17,7 +17,7 @@ limitations under the License. -->
<div class="search">
<el-input v-model="searchText" placeholder="Please input instance name" @change="searchList" class="inputs">
<template #append>
<el-button class="btn" @click="searchList">
<el-button @click="searchList">
<Icon size="sm" iconName="search" />
</el-button>
</template>

View File

@ -17,7 +17,7 @@ limitations under the License. -->
<div class="search">
<el-input v-model="searchText" placeholder="Please input service name" @change="searchList" class="inputs mt-5">
<template #append>
<el-button class="btn" @click="searchList">
<el-button @click="searchList">
<Icon size="sm" iconName="search" />
</el-button>
</template>

View File

@ -48,10 +48,6 @@
width: 400px;
}
.btn {
margin-top: -12px;
}
.chart {
height: 60px;
}