Skip to content

Commit

Permalink
chore: more clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickDinh committed Mar 20, 2024
1 parent fca8151 commit e5dd377
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/features/transactions/pages/group-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ export function GroupPage() {
{account}
</div>
))}
{/* The below div is for drawing the background dash lines */}
<div className={cn('absolute right-0 -z-10')} style={{ top: `${graphConfig.rowHeight}px` }}>
<div>
<div className={cn('p-0')}></div>
Expand All @@ -229,7 +230,7 @@ export function GroupPage() {
>
{accounts.map((_, index) => (
<div key={index} className={cn('flex justify-center')}>
<div className={cn('border-muted border-l-2 h-full border-dashed')}></div>
<div className={cn('border-muted h-full border-dashed')} style={{ borderLeftWidth: graphConfig.lineWidth }}></div>
</div>
))}
</div>
Expand Down

0 comments on commit e5dd377

Please sign in to comment.