Files
wehub-resource-sync 869b84f27c
Build / build (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:29:30 +08:00

13 lines
319 B
Swift

import SwiftUI
// PureMac uses system colors exclusively.
// The app respects the user's system appearance (light/dark/accent color).
extension View {
func cardBackground() -> some View {
self
.padding()
.background(.regularMaterial, in: RoundedRectangle(cornerRadius: 8))
}
}