fix(chat): improve history + polish SwiftUI panel

This commit is contained in:
Peter Steinberger
2025-12-14 04:18:21 +00:00
parent 01341d983c
commit e0545e2f94
5 changed files with 61 additions and 44 deletions

View File

@@ -23,16 +23,6 @@ public struct ClawdisChatView: View {
.padding(.vertical, 16)
.frame(maxWidth: 1040)
}
.background(
LinearGradient(
colors: [
Color(red: 0.96, green: 0.97, blue: 1.0),
Color(red: 0.93, green: 0.94, blue: 0.98),
],
startPoint: .top,
endPoint: .bottom)
.opacity(0.35)
.ignoresSafeArea())
.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .top)
.onAppear { self.viewModel.load() }
}