Skip to content

Commit

Permalink
fix: deployment colors
Browse files Browse the repository at this point in the history
  • Loading branch information
trobonox committed Aug 14, 2023
1 parent 2b6fbf5 commit d11e0be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/routes/dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ const Layout: Component = () => {
</header>
<div class="overflow-y-auto py-3 md:py-0"><Outlet /></div>

<footer class="fixed bottom-0 h-16 w-full flex shrink-0 flex-row gap-x-24 backdrop-blur-md justify-center border-t border-surface1 bg-surface0/30 px-4 shadow-sm md:hidden">
<footer class="fixed bottom-0 h-16 w-full flex shrink-0 flex-row gap-x-24 backdrop-blur-md justify-center border-t text-text border-surface1 bg-surface0/30 px-4 shadow-sm md:hidden">
<A
href={`/dashboard/${auth.profile!.root_workspace_id}`}
class="flex flex-col items-center gap-1 rounded-md px-2 py-2 transition"
Expand Down
2 changes: 1 addition & 1 deletion src/utils/files.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const downloadUploadedFile = (file: UploadedFile) => {

toast.custom(() => (
<div
class="relative flex flex-col gap-2 rounded-md bg-base px-6 py-3 pr-12 font-medium shadow-md">
class="relative flex flex-col gap-2 rounded-md bg-base px-6 py-3 pr-12 font-medium text-text shadow-md">
Downloading... {downloadProgress()}%
<progress value={downloadProgress()} max={100} class="bg-lavender" />
</div>
Expand Down

0 comments on commit d11e0be

Please sign in to comment.