get rid of the footer
Some checks failed
Build and publish the docker image / build (push) Failing after 1m1s

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn
2025-01-21 11:06:01 +03:00
parent fd255fdeb9
commit 9b017e6153
9 changed files with 17 additions and 39 deletions

View File

@ -15,9 +15,8 @@ export default {
</script>
<template>
<div class="relative md:block">
<div class="relative md:block outline-none">
<label for="searchBar" class="hidden">{{ $t('main.search') }}</label>
<v-icon name="io-search-outline" class="absolute my-auto inset-y-0 left-2"></v-icon>
<input
type="text"
id="searchBar"
@ -25,7 +24,8 @@ export default {
:placeholder="$t('main.search')"
v-model="searchInput"
@keyup.enter="redirectToSearch"
class="rounded-md p-1 pl-8 w-56 text-white bg-black border-white outline-none placeholder:text-white w-full"
class="rounded-md p-1 pl-8 w-56 text-white bg-black placeholder:text-white w-full outline-none"
:style="border: solid 1px ${theme.extend.colors.contrast}"
/>
</div>
</template>