resizes settings icons

This commit is contained in:
Stuart Breckenridge
2023-02-10 10:28:11 +08:00
parent 455097b830
commit 9f4332f74f

View File

@@ -23,7 +23,7 @@ struct SettingsViewRows {
Image("system.settings")
.resizable()
.aspectRatio(contentMode: .fit)
.frame(width: 30.0, height: 30.0)
.frame(width: 25.0, height: 25.0)
.clipShape(RoundedRectangle(cornerRadius: 6))
}
.onTapGesture {
@@ -40,7 +40,7 @@ struct SettingsViewRows {
} icon: {
Image("notifications.sounds")
.resizable()
.frame(width: 30.0, height: 30.0)
.frame(width: 25.0, height: 25.0)
.clipShape(RoundedRectangle(cornerRadius: 6))
}
}
@@ -55,7 +55,7 @@ struct SettingsViewRows {
} icon: {
Image("app.account")
.resizable()
.frame(width: 30.0, height: 30.0)
.frame(width: 25.0, height: 25.0)
.clipShape(RoundedRectangle(cornerRadius: 6))
}
}
@@ -70,7 +70,7 @@ struct SettingsViewRows {
} icon: {
Image("app.extension")
.resizable()
.frame(width: 30.0, height: 30.0)
.frame(width: 25.0, height: 25.0)
.clipShape(RoundedRectangle(cornerRadius: 6))
}
}
@@ -89,7 +89,7 @@ struct SettingsViewRows {
} icon: {
Image("app.import.opml")
.resizable()
.frame(width: 30.0, height: 30.0)
.frame(width: 25.0, height: 25.0)
.clipShape(RoundedRectangle(cornerRadius: 6))
}
}
@@ -108,7 +108,7 @@ struct SettingsViewRows {
} icon: {
Image("app.export.opml")
.resizable()
.frame(width: 30.0, height: 30.0)
.frame(width: 25.0, height: 25.0)
.clipShape(RoundedRectangle(cornerRadius: 6))
}
}
@@ -194,7 +194,7 @@ struct SettingsViewRows {
} icon: {
Image("app.appearance")
.resizable()
.frame(width: 30.0, height: 30.0)
.frame(width: 25.0, height: 25.0)
.clipShape(RoundedRectangle(cornerRadius: 6))
}
}
@@ -216,7 +216,7 @@ struct SettingsViewRows {
.symbolRenderingMode(.hierarchical)
.foregroundColor(Color(uiColor: AppAssets.primaryAccentColor))
.aspectRatio(contentMode: .fit)
.frame(width: 30.0, height: 30.0)
.frame(width: 25.0, height: 25.0)
}
.onTapGesture {
selectedSheet.wrappedValue = sheet
@@ -237,7 +237,7 @@ struct SettingsViewRows {
.symbolRenderingMode(.hierarchical)
.foregroundColor(Color(uiColor: AppAssets.primaryAccentColor))
.aspectRatio(contentMode: .fit)
.frame(width: 30.0, height: 30.0)
.frame(width: 25.0, height: 25.0)
}
}
}