fit search bar

This commit is contained in:
hay-kot 2021-05-24 20:12:22 -07:00
commit 4b74e991e2

View file

@ -51,7 +51,7 @@
<v-spacer v-if="!isMobile"> </v-spacer> <v-spacer v-if="!isMobile"> </v-spacer>
<fuse-search-bar :raw-data="allItems" @results="filterItems" :search="searchString"> <fuse-search-bar class="fit-search mr-2" :raw-data="allItems" @results="filterItems" :search="searchString">
<v-text-field <v-text-field
v-model="searchString" v-model="searchString"
clearable clearable
@ -218,4 +218,7 @@ export default {
height: auto !important; height: auto !important;
flex-wrap: wrap; flex-wrap: wrap;
} }
.fit-search {
max-width: 300px;
}
</style> </style>