Skip to content

Commit

Permalink
add more whitespace to empty state
Browse files Browse the repository at this point in the history
  • Loading branch information
sangonz193 committed Apr 22, 2024
1 parent b6fdac3 commit 604e2c5
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions modules/connections/connections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,23 @@ export function Connections() {

function EmptyState() {
return (
<div>
<div className="mt-3 gap-4">
<SquirrelIcon
className="mx-auto size-40 text-muted-foreground opacity-50"
strokeWidth={0.5}
/>

<div className="mt-3 text-center text-xl text-muted-foreground">
No connections yet
</div>
<div>
<div className="text-center text-xl text-muted-foreground">
No connections yet
</div>

<div className="mt-1 text-center text-muted-foreground">
To start sharing files, create a connection with another device.
<div className="mt-1 text-center text-muted-foreground">
To start sharing files, create a connection with another device.
</div>
</div>

<CreateConnectionDialog size="lg" className="mt-6" />
<CreateConnectionDialog size="default" className="mt-10" />
</div>
)
}

0 comments on commit 604e2c5

Please sign in to comment.