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 f2a1318 commit 9b0f8b4Copy full SHA for 9b0f8b4
LlamaBarn/Menu/FooterView.swift
@@ -5,11 +5,13 @@ struct FooterButtonStyle: ButtonStyle {
5
configuration.label
6
.font(Font(Typography.secondary))
7
// fixes: inverse color on mouse down
8
- .foregroundColor(Color(nsColor: .controlTextColor))
+ .foregroundColor(Color(nsColor: .secondaryLabelColor))
9
.padding(.horizontal, 5)
10
.padding(.vertical, 2)
11
- .background(Color(nsColor: .lbSubtleBackground))
12
- .cornerRadius(5)
+ .overlay(
+ RoundedRectangle(cornerRadius: 5)
13
+ .stroke(Color(nsColor: .separatorColor), lineWidth: 1)
14
+ )
15
.controlSize(.small)
16
}
17
0 commit comments