general: small ui change

This commit is contained in:
Michael Freno
2026-01-08 23:48:38 -05:00
parent 1f4a2c7318
commit 54ebe6789a

View File

@@ -188,7 +188,7 @@ struct TimerStatusRow: View {
.foregroundColor(.secondary)
.monospacedDigit()
}
Spacer()
}
.contentShape(Rectangle())
@@ -206,7 +206,7 @@ struct TimerStatusRow: View {
}
.buttonStyle(.plain)
.glassEffect(
isHoveredDevTrigger ? .regular.tint(.yellow) : .regular,
isHoveredDevTrigger ? .regular.tint(.yellow.opacity(0.5)) : .regular,
in: .circle
)
.help("Trigger \(type.displayName) reminder now (dev)")
@@ -224,7 +224,7 @@ struct TimerStatusRow: View {
}
.buttonStyle(.plain)
.glassEffect(
isHoveredSkip ? .regular.tint(.accentColor) : .regular,
isHoveredSkip ? .regular.tint(.accentColor.opacity(0.5)) : .regular,
in: .circle
)
.help("Skip to next \(type.displayName) reminder")
@@ -235,7 +235,7 @@ struct TimerStatusRow: View {
.padding(.horizontal, 8)
.padding(.vertical, 6)
.glassEffect(
isHoveredBody ? .regular.tint(.accentColor) : .regular,
isHoveredBody ? .regular.tint(.accentColor.opacity(0.5)) : .regular,
in: .rect(cornerRadius: 6)
)
.padding(.horizontal, 8)