diff --git a/apps/desktop-client/src/renderer/views/AccountsView.vue b/apps/desktop-client/src/renderer/views/AccountsView.vue index bf65f03..5bfb3d9 100644 --- a/apps/desktop-client/src/renderer/views/AccountsView.vue +++ b/apps/desktop-client/src/renderer/views/AccountsView.vue @@ -756,7 +756,9 @@ const tableColumns = [ flex-direction: column; gap: 32px; padding-bottom: 40px; - max-width: 1400px; + width: 100%; + max-width: none; + box-sizing: border-box; } /* 顶部信息区 */ diff --git a/apps/desktop-client/src/renderer/views/AiPlatformsView.vue b/apps/desktop-client/src/renderer/views/AiPlatformsView.vue index b1ad049..0a9196c 100644 --- a/apps/desktop-client/src/renderer/views/AiPlatformsView.vue +++ b/apps/desktop-client/src/renderer/views/AiPlatformsView.vue @@ -545,7 +545,9 @@ async function unbindPlatform(account: AccountRow) { flex-direction: column; gap: 32px; padding-bottom: 40px; - max-width: 1400px; + width: 100%; + max-width: none; + box-sizing: border-box; } /* Hero Section */ diff --git a/apps/desktop-client/src/renderer/views/HomeView.vue b/apps/desktop-client/src/renderer/views/HomeView.vue index 2326579..807fe5a 100644 --- a/apps/desktop-client/src/renderer/views/HomeView.vue +++ b/apps/desktop-client/src/renderer/views/HomeView.vue @@ -270,7 +270,9 @@ const issueItems = computed(() => { flex-direction: column; gap: 24px; padding-bottom: 40px; - max-width: 1400px; + width: 100%; + max-width: none; + box-sizing: border-box; } /* Metrics Top Grid */ diff --git a/apps/desktop-client/src/renderer/views/PublishManagementView.vue b/apps/desktop-client/src/renderer/views/PublishManagementView.vue index 2d01847..7461467 100644 --- a/apps/desktop-client/src/renderer/views/PublishManagementView.vue +++ b/apps/desktop-client/src/renderer/views/PublishManagementView.vue @@ -894,7 +894,9 @@ const tableScroll = { x: 1080 } as const flex-direction: column; gap: 32px; padding-bottom: 40px; - max-width: 1400px; + width: 100%; + max-width: none; + box-sizing: border-box; } /* Hero Section (aligned with AccountsView) */ diff --git a/apps/desktop-client/src/renderer/views/SettingsView.vue b/apps/desktop-client/src/renderer/views/SettingsView.vue index 1bf03e1..f3ca8ae 100644 --- a/apps/desktop-client/src/renderer/views/SettingsView.vue +++ b/apps/desktop-client/src/renderer/views/SettingsView.vue @@ -53,7 +53,6 @@ const subsystemEntries = computed(() => })), ) -const clientCount = computed(() => snapshot.value?.summary.onlineClients ?? 0) const appVersion = computed(() => snapshot.value?.app.version ?? '0.1.0') const hasServerSettingChanged = computed( () => normalizeServerURLInput(serverBaseURL.value) !== apiBaseURL.value, @@ -177,9 +176,6 @@ watch(apiBaseURL, (next) => { > {{ item.title }} - - {{ clientCount }} - @@ -379,21 +375,6 @@ watch(apiBaseURL, (next) => { color: #080808; } -.settings-nav__badge { - margin-left: auto; - display: inline-flex; - align-items: center; - justify-content: center; - min-width: 22px; - height: 22px; - padding: 0 7px; - border-radius: 11px; - background: #c4c4ca; - color: #111111; - font-size: 12px; - font-weight: 700; -} - .settings-main { position: relative; display: flex;