diff options
author | 2022-04-14 22:41:51 +0200 | |
---|---|---|
committer | 2022-04-14 22:41:51 +0200 | |
commit | 1d09a01bb25088493cc9b7f2cb7f8a8aa69ac9e9 (patch) | |
tree | d6fdc27dc910443fa38bf920f0a01c6645b25693 /src/components/SearchBar.vue | |
parent | 2df3f53b78bbe419763fd359788a4b0b5710e4b7 (diff) | |
download | it-tools-1d09a01bb25088493cc9b7f2cb7f8a8aa69ac9e9.tar.gz it-tools-1d09a01bb25088493cc9b7f2cb7f8a8aa69ac9e9.tar.zst it-tools-1d09a01bb25088493cc9b7f2cb7f8a8aa69ac9e9.zip |
refactor(style): cleaner layout
Diffstat (limited to 'src/components/SearchBar.vue')
-rw-r--r-- | src/components/SearchBar.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/SearchBar.vue b/src/components/SearchBar.vue index 9c5f164..fe23e03 100644 --- a/src/components/SearchBar.vue +++ b/src/components/SearchBar.vue @@ -32,7 +32,7 @@ function onSelect(path: string) { </script> <template> - <div> + <div class="search-bar"> <n-auto-complete :options="options" v-model:value="queryString" :input-props="{ autocomplete: 'disabled' }" :on-select="onSelect"> <template #default="{ handleInput, handleBlur, handleFocus, value: slotValue }"> |