Skip to content

Commit

Permalink
Tracker
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusab committed Jun 20, 2024
1 parent b00aec9 commit a418ee7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default async function Tracker({ searchParams }) {
{/* TODO: Fix skeleton with suspense */}
<TrackerGraph date={searchParams?.date} />

<div className="mt-14 mb-6 flex items-center justify-between">
<div className="mt-14 mb-6 flex items-center justify-between space-x-4">
<SearchField placeholder="Search projects" />
<div className="flex space-x-2">
<TrackerChangeStatus />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export function DataTableHeader() {
</TableHead>
<TableHead>
<Button
className="p-0 hover:bg-transparent space-x-2"
className="p-0 hover:bg-transparent space-x-2 min-w-[150px]"
variant="ghost"
onClick={() => createSortQuery("status")}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export function TrackerGraph({
/>
</div>

<div className="flex gap-2 mt-8 justify-between">
<div className="flex gap-2 mt-8 justify-between overflow-y-auto scrollbar-hide">
<div className="flex flex-col justify-between mr-4">
{days.map((day) => (
<div className="h-[28px]" key={day}>
Expand Down

0 comments on commit a418ee7

Please sign in to comment.