Skip to content

Commit

Permalink
fix: colors in final deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
trobonox committed Aug 14, 2023
1 parent 351266e commit c3a8c3d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/routes/dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ const Layout: Component = () => {
<div class="flex flex-row items-center justify-end gap-2">
<Modal.CloseButton
type="button"
class="my-auto border border-surface1 rounded-lg bg-base/50 px-4 py-2 transition hover:bg-base/70"
class="my-auto border border-surface1 rounded-lg bg-base/50 px-4 py-2 transition text-subtext0 hover:bg-base/70"
>
Cancel
</Modal.CloseButton>
Expand Down
4 changes: 2 additions & 2 deletions src/routes/dashboard/[workspace_id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -384,10 +384,10 @@ const Page: Component = () => {
<Show
when={workspace().data.name === "../"}
fallback={
<IconFolderOutline class="min-w-6 text-lg" />
<IconFolderOutline class="min-w-6 text-lg text-text" />
}
>
<IconArrowULeftTop class="mb-0.5 min-w-6 text-lg" />
<IconArrowULeftTop class="mb-0.5 min-w-6 text-lg text-text" />
</Show>
<p class="mt-0.5 truncate text-ellipsis text-sm text-[#0f0f0f] lg:w-122 md:w-80">
{getWorkspaceName(workspace().data.name)}
Expand Down
4 changes: 2 additions & 2 deletions src/routes/dashboard/shared.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ const SharedPage: Component = () => {
<Show
when={workspace.name === "../"}
fallback={
<IconFolderOutline class="min-w-6 text-lg" />
<IconFolderOutline class="min-w-6 text-lg text-text" />
}
>
<IconArrowULeftTop class="mb-0.5 min-w-6 text-lg" />
<IconArrowULeftTop class="mb-0.5 min-w-6 text-lg text-text" />
</Show>
<p class="mt-0.5 truncate text-ellipsis text-sm text-[#0f0f0f] lg:w-122 md:w-80">
{getWorkspaceName(workspace.name)}
Expand Down

0 comments on commit c3a8c3d

Please sign in to comment.