Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/catto-labs/drive into main
Browse files Browse the repository at this point in the history
  • Loading branch information
pnxl committed Aug 13, 2023
2 parents 5592936 + f6b631b commit b5b52c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/routes/dashboard/[workspace_id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import IconDownload from "~icons/mdi/download";
import IconDeleteOutline from "~icons/mdi/delete-outline";
import IconDotsHorizontal from "~icons/mdi/dots-horizontal";
import IconClose from "~icons/mdi/close";
import IconFolder from "~icons/mdi/folder";
import IconFolderOutline from "~icons/mdi/folder-outline";

import cattoDriveLogo from "@/assets/icon/logo.png";

Expand Down Expand Up @@ -420,11 +420,11 @@ const Page: Component = () => {
>
{(workspace) => (
<A
class="w-full h-auto p-3 flex flex-row justify-between items-center gap-1 border-b border-surface2 hover:bg-surface0"
class="w-full h-auto py-3 px-2 flex flex-row justify-between items-center gap-1 border-b border-surface2 hover:bg-surface0"
href={`/dashboard/${workspace().id}`}
>
<div class="flex flex-row gap-2 pl-0.5">
<IconFolder class="text-lg" />
<IconFolderOutline class="text-lg" />
<p class="text-sm mt-0.5">{workspace().name}</p>
</div>
</A>
Expand Down

0 comments on commit b5b52c9

Please sign in to comment.