diff --git a/frontend/app.vue b/frontend/app.vue
index 8c48eb81..f6b0ade6 100644
--- a/frontend/app.vue
+++ b/frontend/app.vue
@@ -1,6 +1,6 @@
-
+
@@ -11,5 +11,9 @@
diff --git a/frontend/layouts/default.vue b/frontend/layouts/default.vue
index d6d917f1..1f7ab6cd 100644
--- a/frontend/layouts/default.vue
+++ b/frontend/layouts/default.vue
@@ -79,6 +79,7 @@
:to="n.to"
:class="{
'bg-secondary text-secondary-content': n.active?.value,
+ 'text-nowrap': typeof locale === 'string' && locale.startsWith('zh-'),
}"
>
@@ -114,7 +115,7 @@
import MdiMenu from "~icons/mdi/menu";
import MdiPlus from "~icons/mdi/plus";
- const { t } = useI18n();
+ const { t, locale } = useI18n();
const username = computed(() => authCtx.user?.name || "User");
const preferences = useViewPreferences();