Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
fix: use muted color for app version
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz committed Jun 21, 2024
1 parent d8c04f9 commit ca67d3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/layouts/AppLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export default function AppLayout() {
to="https://getalby.com/hub_deployment/edit" // TODO: link to general update page
className="font-semibold text-xl"
>
<span className="text-xs flex items-center">
<span className="text-xs flex items-center text-muted-foreground">
{info?.version}&nbsp;
{info?.upToDate ? (
<ShieldCheckIcon className="w-4 h-4" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default function TwoColumnFullScreenLayout() {
<div className="flex flex-row justify-between items-center">
<h1 className="text-lg font-medium">Alby Hub</h1>
{info?.version && (
<p className="text-sm text-muted">{info.version}</p>
<p className="text-sm text-muted-foreground">{info.version}</p>
)}
{/* <ModeToggle /> */}
</div>
Expand Down

0 comments on commit ca67d3c

Please sign in to comment.