We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee2aefb commit 9b0b4bcCopy full SHA for 9b0b4bc
1 file changed
Core/Sources/SuggestionWidget/ChatWindowView.swift
@@ -140,7 +140,7 @@ struct ChatTitleBar: View {
140
width: Style.trafficLightButtonSize,
141
height: Style.trafficLightButtonSize
142
)
143
- .overlay{
+ .overlay {
144
Circle().stroke(lineWidth: 0.5).foregroundColor(.black.opacity(0.2))
145
}
146
.overlay {
@@ -395,6 +395,11 @@ struct ChatTabContainer: View {
395
.disabled(!isActive)
396
.allowsHitTesting(isActive)
397
.frame(maxWidth: .infinity, maxHeight: .infinity)
398
+ // move it out of window
399
+ .rotationEffect(
400
+ isActive ? .zero : .degrees(90),
401
+ anchor: .topLeading
402
+ )
403
} else {
404
EmptyView()
405
0 commit comments