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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user