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

@ -1,23 +0,0 @@
<script lang="ts">
const dev = import.meta.env.DEV
export default {
setup() {
let version = `${import.meta.env.SAFETWITCH_TAG}-${import.meta.env.SAFETWITCH_COMMIT_HASH}`
if (dev) {
version = version + '-dev'
}
return {
version
}
}
}
</script>
<template>
<div class="m-2 mt-5 flex justify-center">
<p class="text-contrast font-bold">SafeTwitch {{ version }}</p>
</div>
</template>

View File

@ -70,7 +70,11 @@ export default {
</template>
<style>
a:hover, router-link:hover {
nav {
color:
}
ul a:hover, ul router-link:hover {
text-decoration: underline;
}

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>