Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
juansensio committed Aug 21, 2024
1 parent 08ae95d commit 35bc23f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions ui/src/components/FileExplorer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
pdf: ["pdf"],
md: ["md"],
};
let blobFunctions = {
image: async () => {
return URL.createObjectURL(blob);
Expand Down
4 changes: 2 additions & 2 deletions ui/src/routes/Nav2.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
{#each links as link}
<li
class="{$page.url.pathname == '/'
? 'text-gray-100 hover:text-white'
? 'text-gray-200 hover:text-white'
: 'text-slate-600 hover:text-slate-800'}
hidden lg:block text-slate-500 gap-2 text-sm"
>
Expand All @@ -62,7 +62,7 @@
href={loading ? "" : "/api/auth/logout"}
class="border-2 rounded-md px-2 hover:border-gray-300 {$page
.url.pathname == '/'
? 'text-gray-100 hover:border-white border-slate-400'
? 'text-gray-200 hover:border-white border-slate-400'
: 'text-slate-600 border-slate-400 hover:border-slate-800'}"
>Sign Out</a
>
Expand Down

0 comments on commit 35bc23f

Please sign in to comment.