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

This commit is contained in:
2026-01-12 14:42:07 +08:00
parent ff8bbffe4d
commit e1a917fdcd

View File

@@ -213,7 +213,12 @@ function handleMenuSelect(key: string) {
<template> <template>
<n-flex justify="space-between" align="center"> <n-flex justify="space-between" align="center">
<n-flex align="center"> <n-flex align="center">
<n-flex align="center" class="title" @click="goHome"> <n-flex
align="center"
class="title"
:class="isDesktop ? 'desktop' : ''"
@click="goHome"
>
<Icon icon="streamline-emojis:dog" :height="30"></Icon> <Icon icon="streamline-emojis:dog" :height="30"></Icon>
<div>{{ configStore.config?.website_name }}</div> <div>{{ configStore.config?.website_name }}</div>
<div v-if="showEnvVersion">({{ envVersion }})</div> <div v-if="showEnvVersion">({{ envVersion }})</div>
@@ -289,6 +294,9 @@ function handleMenuSelect(key: string) {
.title { .title {
font-size: 18px; font-size: 18px;
cursor: pointer; cursor: pointer;
}
.title.desktop {
margin: 0 16px; margin: 0 16px;
} }
</style> </style>