feat: update main chat and system chat UI

This commit is contained in:
2026-05-25 17:26:37 +09:00
parent fb5ec649cd
commit f59522ffc4
120 changed files with 43262 additions and 3325 deletions

View File

@@ -0,0 +1,29 @@
.shared-app-settings-page {
display: flex;
flex-direction: column;
gap: 16px;
padding: 16px;
min-height: 100%;
background: #f7f8fb;
}
.shared-app-settings-page--loading {
align-items: center;
justify-content: center;
}
.shared-app-settings-page__grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 16px;
}
.shared-app-settings-page .ant-card {
border-radius: 16px;
}
.shared-app-settings-page .ant-card-body {
display: flex;
flex-direction: column;
gap: 4px;
}