Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions packages/ui/src/features/home/components/HomeView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export function HomeView() {
</Text>
</Flex>
{hasContent ? (
<Flex align="center" gap="3" className="text-[12px]">
<Flex align="center" gap="5" className="text-[12px]">
{needsAttention.length > 0 ? (
<Stat
color="var(--amber-9)"
Expand Down Expand Up @@ -229,27 +229,27 @@ function ViewModeToggle({ value, onChange }: ViewModeToggleProps) {
title="Switch view (press v to cycle)"
>
<Button
size="xs"
size="sm"
variant={value === "list" ? "primary" : "link-muted"}
onClick={() => onChange("list")}
>
<ListBullets size={12} />
<ListBullets size={14} />
List
</Button>
<Button
size="xs"
size="sm"
variant={value === "board" ? "primary" : "link-muted"}
onClick={() => onChange("board")}
>
<Kanban size={12} />
<Kanban size={14} />
Board
</Button>
<Button
size="xs"
size="sm"
variant={value === "config" ? "primary" : "link-muted"}
onClick={() => onChange("config")}
>
<Graph size={12} />
<Graph size={14} />
Config
</Button>
</Flex>
Expand All @@ -266,7 +266,7 @@ function Stat({
pulse?: boolean;
}) {
return (
<Flex align="center" gap="1.5">
<Flex align="center" gap="2">
<span
className={`inline-block h-2 w-2 rounded-full ${pulse ? "animate-pulse" : ""}`}
style={{ backgroundColor: color }}
Expand Down
Loading