fix(mobile): improve mobile UI for kanban, group chat and page headers (#562)

- Fix kanban loading spinner flickering on auto-refresh (silent mode)
- Fix group chat room-list transparent background on mobile
- Fix group chat sidebar auto-opening on mobile entry
- Fix page-header title overlapped by hamburger button on mobile
- Move hamburger button position to top: 10px
- Add changelog note about upgrading hermes-agent for kanban support
- Add i18n translations for all 8 locales

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
ekko
2026-05-09 12:18:26 +08:00
committed by GitHub
parent c3738cf1c3
commit 4f8f932d03
13 changed files with 19 additions and 8 deletions
@@ -14,7 +14,7 @@ const message = useMessage()
const store = useGroupChatStore()
const profilesStore = useProfilesStore()
const showSidebar = ref(true)
const showSidebar = ref(window.innerWidth > 768)
const showCreateModal = ref(false)
const showAddAgentModal = ref(false)
const showCompressionModal = ref(false)
@@ -915,11 +915,12 @@ export default defineComponent({ components: { CreateRoomForm } })
top: 0;
bottom: 0;
z-index: 100;
background-color: $bg-card;
box-shadow: 4px 0 16px rgba(0, 0, 0, 0.1);
}
.chat-header {
padding-left: 56px;
padding: 16px 12px 16px 52px;
}
}
</style>