diff --git a/Mac/Preferences/Accounts/AddAccountsView.swift b/Mac/Preferences/Accounts/AddAccountsView.swift index cdfc56cf1..61ccaf3f1 100644 --- a/Mac/Preferences/Accounts/AddAccountsView.swift +++ b/Mac/Preferences/Accounts/AddAccountsView.swift @@ -117,7 +117,9 @@ struct AddAccountsView: View { .frame(width: 80) }) } - }.padding(.vertical, 8) + } + .padding(.top, 12) + .padding(.bottom, 4) } .pickerStyle(RadioGroupPickerStyle()) .fixedSize(horizontal: false, vertical: true) @@ -133,12 +135,11 @@ struct AddAccountsView: View { Picker(selection: $selectedAccount, label: Text(""), content: { ForEach(AddAccountSections.local.sectionContent, id: \.self, content: { account in - HStack(alignment: .top) { + HStack(alignment: .center) { account.image() .resizable() .aspectRatio(contentMode: .fit) .frame(width: 25, height: 25, alignment: .center) - .offset(CGSize(width: 0, height: -3.5)) .padding(.leading, 4) @@ -167,12 +168,11 @@ struct AddAccountsView: View { Picker(selection: $selectedAccount, label: Text(""), content: { ForEach(AddAccountSections.icloud.sectionContent, id: \.self, content: { account in - HStack(alignment: .top) { + HStack(alignment: .center) { account.image() .resizable() .aspectRatio(contentMode: .fit) .frame(width: 25, height: 25, alignment: .center) - .offset(CGSize(width: 0, height: -3.5)) .padding(.leading, 4) Text(account.localizedAccountName()) @@ -229,12 +229,11 @@ struct AddAccountsView: View { Picker(selection: $selectedAccount, label: Text(""), content: { ForEach(AddAccountSections.selfhosted.sectionContent, id: \.self, content: { account in - HStack(alignment: .top) { + HStack(alignment: .center) { account.image() .resizable() .aspectRatio(contentMode: .fit) .frame(width: 25, height: 25, alignment: .center) - .offset(CGSize(width: 0, height: -4)) .padding(.leading, 4) Text(account.localizedAccountName()) diff --git a/Mac/Resources/Assets.xcassets/accountFreshRSS.imageset/Contents.json b/Mac/Resources/Assets.xcassets/accountFreshRSS.imageset/Contents.json index 974a47751..99d210221 100644 --- a/Mac/Resources/Assets.xcassets/accountFreshRSS.imageset/Contents.json +++ b/Mac/Resources/Assets.xcassets/accountFreshRSS.imageset/Contents.json @@ -1,7 +1,7 @@ { "images" : [ { - "filename" : "freshrss-any.pdf", + "filename" : "FreshRSS.pdf", "idiom" : "universal" } ], diff --git a/Mac/Resources/Assets.xcassets/accountFreshRSS.imageset/freshrss-any.pdf b/Mac/Resources/Assets.xcassets/accountFreshRSS.imageset/FreshRSS.pdf similarity index 95% rename from Mac/Resources/Assets.xcassets/accountFreshRSS.imageset/freshrss-any.pdf rename to Mac/Resources/Assets.xcassets/accountFreshRSS.imageset/FreshRSS.pdf index 066de5aa3..d9ba3f3ea 100644 Binary files a/Mac/Resources/Assets.xcassets/accountFreshRSS.imageset/freshrss-any.pdf and b/Mac/Resources/Assets.xcassets/accountFreshRSS.imageset/FreshRSS.pdf differ