Fix search field
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
4d1780c58d
commit
01b2dce74d
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<b-input icon="magnify" type="search" rounded :placeholder="defaultPlaceHolder" v-model="searchText" @keyup.native.enter="enter" />
|
<b-input custom-class="searchField" icon="magnify" type="search" rounded :placeholder="defaultPlaceHolder" v-model="searchText" @keyup.native.enter="enter" />
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Component, Prop, Vue } from 'vue-property-decorator';
|
import { Component, Prop, Vue } from 'vue-property-decorator';
|
||||||
@ -20,3 +20,10 @@ export default class SearchField extends Vue {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
input.searchField {
|
||||||
|
box-shadow: none;
|
||||||
|
border-color: #b5b5b5;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue
Block a user