We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8f613b commit c15858dCopy full SHA for c15858d
1 file changed
Core/Sources/SuggestionWidget/SuggestionPanelContent/PromptToCodePanelView.swift
@@ -55,8 +55,9 @@ extension PromptToCodePanelView {
55
Button(action: {
56
store.send(.revertButtonTapped)
57
}, label: {
58
- HStack(spacing: 2) {
+ HStack(spacing: 4) {
59
Text(Image(systemName: "arrow.uturn.backward.circle.fill"))
60
+ .foregroundStyle(.secondary)
61
Text(previousStep.instruction)
62
.lineLimit(1)
63
.truncationMode(.tail)
@@ -67,7 +68,7 @@ extension PromptToCodePanelView {
67
68
})
69
.buttonStyle(.plain)
70
.disabled(store.promptToCodeState.isGenerating)
- .padding(4)
71
+ .padding(6)
72
73
Divider()
74
}
0 commit comments