Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.

Commit 6f4eeb2

Browse files
authored
Fix colour stuff
1 parent 88cec78 commit 6f4eeb2

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

Sources/prostore/views/CertificateView.swift

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ struct CertificateView: View {
198198

199199
var body: some View {
200200
NavigationStack {
201-
ScrollView {
201+
Form {
202202
LazyVGrid(columns: [GridItem(.flexible()), GridItem(.flexible())], spacing: 20) {
203203
ForEach(customCertificates) { cert in
204204
ZStack(alignment: .top) {
@@ -210,7 +210,6 @@ struct CertificateView: View {
210210
}
211211
.padding(20)
212212
.frame(maxWidth: .infinity)
213-
.background(Color(.systemGray6))
214213
.cornerRadius(16)
215214
.overlay(
216215
RoundedRectangle(cornerRadius: 16)
@@ -238,7 +237,7 @@ struct CertificateView: View {
238237
.foregroundColor(.blue)
239238
.font(.caption)
240239
.padding(8)
241-
.background(Color.white.opacity(0.8))
240+
.background(Color(.systemGray6).opacity(0.8))
242241
.clipShape(Circle())
243242
}
244243

@@ -254,7 +253,7 @@ struct CertificateView: View {
254253
.foregroundColor(customCertificates.count > 1 ? .red : .gray)
255254
.font(.caption)
256255
.padding(8)
257-
.background(Color.white.opacity(0.8))
256+
.background(Color(.systemGray6).opacity(0.8))
258257
.clipShape(Circle())
259258
}
260259
.disabled(customCertificates.count <= 1)

project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ targets:
3030
properties:
3131
CFBundleDisplayName: "ProStore"
3232
CFBundleName: "prostore"
33-
CFBundleVersion: "33"
34-
CFBundleShortVersionString: "1.6.0"
33+
CFBundleVersion: "34"
34+
CFBundleShortVersionString: "1.6.1"
3535
UILaunchStoryboardName: "LaunchScreen"
3636
NSPrincipalClass: "UIApplication"
3737
NSAppTransportSecurity:

0 commit comments

Comments
 (0)