We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6efad2 commit 6689fd3Copy full SHA for 6689fd3
CodeEdit/Features/InspectorArea/HistoryInspector/HistoryPopoverView.swift
@@ -18,10 +18,8 @@ struct HistoryPopoverView: View {
18
var body: some View {
19
VStack {
20
CommitDetailsHeaderView(commit: commit)
21
- .padding(.horizontal)
22
23
Divider()
24
25
26
VStack(alignment: .leading, spacing: 0) {
27
// TODO: Implementation Needed
@@ -71,6 +69,8 @@ struct HistoryPopoverView: View {
71
69
}, icon: {
72
70
Image(systemName: image)
73
.frame(width: 16, alignment: .center)
+ .padding(.leading, -2.5)
+ .padding(.trailing, 2.5)
74
})
75
.frame(maxWidth: .infinity, alignment: .leading)
76
.foregroundColor(isHovering && isEnabled ? .white : .primary)
0 commit comments