i fucking hate js yeah fuck you
All checks were successful
Build and publish the docker image / build (push) Successful in 1m22s

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn 2025-01-21 11:59:01 +03:00
parent 9c27a9c8e1
commit 34a23278d4
Signed by: ngn
GPG Key ID: A3654DF5AD9F641D
5 changed files with 8 additions and 9 deletions

View File

@ -10,7 +10,7 @@ const dev = import.meta.env.DEV
<template> <template>
<dev-warning v-if="dev"></dev-warning> <dev-warning v-if="dev"></dev-warning>
<div :class="getTheme()" class="flex flex-col justify-between min-h-[100vh] bg-primary"> <div :class="getTheme()" class="flex flex-col min-h-[100vh] bg-black">
<navbar-item></navbar-item> <navbar-item></navbar-item>
<Suspense> <Suspense>
<RouterView :key="$route.fullPath" /> <RouterView :key="$route.fullPath" />

View File

@ -24,8 +24,7 @@ export default {
:placeholder="$t('main.search')" :placeholder="$t('main.search')"
v-model="searchInput" v-model="searchInput"
@keyup.enter="redirectToSearch" @keyup.enter="redirectToSearch"
class="rounded-md p-1 pl-8 w-56 text-white bg-black placeholder:text-white w-full outline-none" class="rounded-md px-2 text-black bg-white placeholder:text-black w-full outline-none"
style="border: solid 1px #151515;"
/> />
</div> </div>
</template> </template>

View File

@ -245,7 +245,7 @@ export const themeList = [
extend: { extend: {
colors: { colors: {
primary: '#141515', primary: '#141515',
secondary: '#000', secondary: '#1e1f1f',
overlay0: '#282a2a', overlay0: '#282a2a',
overlay1: '#323434', overlay1: '#323434',
surface0: '#393B3B', surface0: '#393B3B',

View File

@ -115,12 +115,10 @@ export default {
</li> </li>
</ul> </ul>
<!---
<h1 class="font-bold text-3xl mt-2">{{ $t('main.themes') }}</h1> <h1 class="font-bold text-3xl mt-2">{{ $t('main.themes') }}</h1>
<hr class="my-2" /> <hr class="my-2" />
<ul class="flex space-x-2"> <ul class="flex space-x-2">
<!--
Use theme colors for preview
-->
<li <li
v-for="theme in themeList" v-for="theme in themeList"
:key="theme.name" :key="theme.name"
@ -150,5 +148,7 @@ export default {
class="bg-surface0 p-4 py-2 rounded-md" class="bg-surface0 p-4 py-2 rounded-md"
/> />
</div> </div>
-->
</div> </div>
</template> </template>

View File

@ -56,6 +56,6 @@ module.exports = {
] ]
}), }),
require('@tailwindcss/typography'), require('@tailwindcss/typography'),
require("@tailwindcss/forms") require("@tailwindcss/forms")
], ],
} }