mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-09 06:02:22 -05:00
fix: resolve issue with banksync table border (#6825)
This commit is contained in:
@@ -115,6 +115,7 @@ export function BankSync() {
|
||||
<Page
|
||||
header={t('Bank Sync')}
|
||||
style={{
|
||||
minHeight: 'initial',
|
||||
marginInline: floatingSidebar && !isNarrowWidth ? 'auto' : 0,
|
||||
paddingBottom: MOBILE_NAV_HEIGHT,
|
||||
}}
|
||||
@@ -129,7 +130,7 @@ export function BankSync() {
|
||||
)}
|
||||
{Object.entries(groupedAccounts).map(([syncProvider, accounts]) => {
|
||||
return (
|
||||
<View key={syncProvider} style={{ marginBottom: '1em' }}>
|
||||
<View key={syncProvider} style={{ minHeight: 'initial' }}>
|
||||
{Object.keys(groupedAccounts).length > 1 && (
|
||||
<Text
|
||||
style={{ fontWeight: 500, fontSize: 20, margin: '.5em 0' }}
|
||||
|
||||
6
upcoming-release-notes/6825.md
Normal file
6
upcoming-release-notes/6825.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Bugfixes
|
||||
authors: [aelxxs]
|
||||
---
|
||||
|
||||
Fix bank sync table borders.
|
||||
Reference in New Issue
Block a user