Fix iPhone account label layout
This commit is contained in:
parent
31b506b85a
commit
eab67ae88a
|
@ -22,7 +22,9 @@ struct SettingsFeedbinAccountView : View {
|
|||
Section(header:
|
||||
HStack {
|
||||
Spacer()
|
||||
SettingsAccountLabelView(accountImage: "accountFeedbin", accountLabel: "Feedbin").padding()
|
||||
SettingsAccountLabelView(accountImage: "accountFeedbin", accountLabel: "Feedbin")
|
||||
.padding()
|
||||
.layoutPriority(1.0)
|
||||
Spacer()
|
||||
}
|
||||
) {
|
||||
|
|
|
@ -18,7 +18,9 @@ struct SettingsLocalAccountView : View {
|
|||
Section(header:
|
||||
HStack {
|
||||
Spacer()
|
||||
SettingsAccountLabelView(accountImage: "accountLocal", accountLabel: Account.defaultLocalAccountName).padding()
|
||||
SettingsAccountLabelView(accountImage: "accountLocal", accountLabel: Account.defaultLocalAccountName)
|
||||
.padding()
|
||||
.layoutPriority(1.0)
|
||||
Spacer()
|
||||
}
|
||||
) {
|
||||
|
|
Loading…
Reference in New Issue