Skip to content

Commit

Permalink
fix: change hub logo
Browse files Browse the repository at this point in the history
  • Loading branch information
jog1t committed Sep 25, 2024
1 parent 1e8185e commit 4277064
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions apps/hub/public/icon-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions apps/hub/src/components/header/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function Header() {
>
<AssetImage
className="h-6"
src="/logo/cream.svg"
src="/logo/icon-white.svg"
alt="Rivet logo"
/>
</Link>
Expand Down Expand Up @@ -96,9 +96,9 @@ export function Header() {
<nav className="flex-1 font-medium md:flex md:flex-row md:items-center md:gap-5 md:text-sm lg:gap-6">
<Link to="/">
<AssetImage
className="h-6"
className="h-8"
alt="Rivet Logo"
src="/logo/cream.svg"
src="/logo/icon-white.svg"
/>
</Link>
<div className="hidden md:flex">
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/fullscreen-loading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { AssetImage } from "./asset-image";
export function FullscreenLoading() {
return (
<div className="min-h-screen flex items-center justify-center">
<AssetImage className="animate-pulse" src="/logo/cream.svg" />
<AssetImage className="animate-pulse h-10" src="/logo/icon-white.svg" />
</div>
);
}

0 comments on commit 4277064

Please sign in to comment.