diff --git a/Sources/ClioilApp/ClioilApp.swift b/Sources/ClioilApp/ClioilApp.swift index d066fc5..d36896e 100644 --- a/Sources/ClioilApp/ClioilApp.swift +++ b/Sources/ClioilApp/ClioilApp.swift @@ -38,7 +38,7 @@ struct ContentView: View { .padding(.vertical, 5).padding(.horizontal, 6) .frame(maxWidth: .infinity, alignment: .leading) .listRowBackground( - RoundedRectangle(cornerRadius: 6) + RoundedRectangle(cornerRadius: 6, style: .continuous) .fill(isSel ? Color.reefTeal : Color.clear) .padding(.vertical, 1) ) @@ -201,7 +201,7 @@ struct ProjectDetailView: View { .padding(10) .frame(maxWidth: .infinity, alignment: .leading) .background(Color(hex: 0x031c1c)) - .clipShape(RoundedRectangle(cornerRadius: 8)) + .clipShape(RoundedRectangle(cornerRadius: 8, style: .continuous)) } if let a = publisher.advice { @@ -216,7 +216,7 @@ struct ProjectDetailView: View { .padding(10) .frame(maxWidth: .infinity, alignment: .leading) .background(Color.reefAmber.opacity(0.12)) - .clipShape(RoundedRectangle(cornerRadius: 8)) + .clipShape(RoundedRectangle(cornerRadius: 8, style: .continuous)) } } }