diff --git a/frontend_nuxt/components/MenuComponent.vue b/frontend_nuxt/components/MenuComponent.vue index 7b52bae54..e60fa75ee 100644 --- a/frontend_nuxt/components/MenuComponent.vue +++ b/frontend_nuxt/components/MenuComponent.vue @@ -262,7 +262,7 @@ const gotoTag = (t) => { top: var(--header-height); width: 220px; background-color: var(--app-menu-background-color); - height: calc(100vh - 20px - var(--header-height)); + height: calc(100vh - var(--header-height)); border-right: 1px solid var(--menu-border-color); display: flex; flex-direction: column; @@ -348,6 +348,7 @@ const gotoTag = (t) => { display: flex; align-items: center; justify-content: center; + cursor: pointer; } .menu-section { diff --git a/frontend_nuxt/pages/about/index.vue b/frontend_nuxt/pages/about/index.vue index 1858a6402..8d5aaa60f 100644 --- a/frontend_nuxt/pages/about/index.vue +++ b/frontend_nuxt/pages/about/index.vue @@ -98,9 +98,7 @@ export default { } .about-tabs { - position: sticky; top: calc(var(--header-height) + 1px); - z-index: 200; background-color: var(--background-color-blur); display: flex; flex-direction: row; diff --git a/frontend_nuxt/pages/message.vue b/frontend_nuxt/pages/message.vue index b22f07294..d694b1b2d 100644 --- a/frontend_nuxt/pages/message.vue +++ b/frontend_nuxt/pages/message.vue @@ -724,6 +724,7 @@ onActivated(async () => { justify-content: space-between; align-items: center; backdrop-filter: var(--blur-10); + border-bottom: 1px solid var(--normal-border-color); } .message-page-header-right { @@ -837,7 +838,6 @@ onActivated(async () => { .message-tabs { display: flex; flex-direction: row; - border-bottom: 1px solid var(--normal-border-color); } .message-tab-item { diff --git a/frontend_nuxt/pages/new-post.vue b/frontend_nuxt/pages/new-post.vue index 1d7a7e1f8..ed64f63f5 100644 --- a/frontend_nuxt/pages/new-post.vue +++ b/frontend_nuxt/pages/new-post.vue @@ -16,7 +16,7 @@