fix
Some checks failed
Deploy / deploy (push) Has been cancelled

This commit is contained in:
2026-01-12 17:07:03 +08:00
parent e1a917fdcd
commit 84354a7e30

View File

@@ -130,11 +130,6 @@ const menus = computed<MenuOption[]>(() => [
key: "announcement",
icon: renderIcon("twemoji:loudspeaker"),
},
{
label: () => "别点",
key: "dont-click",
icon: renderIcon("twemoji:zany-face"),
},
{
label: () =>
h(
@@ -213,12 +208,7 @@ function handleMenuSelect(key: string) {
<template>
<n-flex justify="space-between" align="center">
<n-flex align="center">
<n-flex
align="center"
class="title"
:class="isDesktop ? 'desktop' : ''"
@click="goHome"
>
<n-flex align="center" class="title" @click="goHome">
<Icon icon="streamline-emojis:dog" :height="30"></Icon>
<div>{{ configStore.config?.website_name }}</div>
<div v-if="showEnvVersion">({{ envVersion }})</div>
@@ -295,8 +285,4 @@ function handleMenuSelect(key: string) {
font-size: 18px;
cursor: pointer;
}
.title.desktop {
margin: 0 16px;
}
</style>