Skip to content

Commit

Permalink
fix: replace arrow right icon with rotated popicon
Browse files Browse the repository at this point in the history
  • Loading branch information
reneaaron committed Jan 30, 2024
1 parent 53d3360 commit 4a8362c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/app/components/Navbar/NavbarLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function NavbarLink({ children, end = false, href, target }: Props) {
target={target}
className={({ isActive }) =>
classNames(
"inline-flex font-semibold hover:text-gray-800 dark:hover:text-gray-300 transition px-1 text-md",
"flex items-center font-semibold hover:text-gray-800 dark:hover:text-gray-300 transition px-1 text-md",
isActive
? " text-black dark:text-gray-100"
: " text-gray-600 dark:text-gray-600"
Expand Down
3 changes: 2 additions & 1 deletion src/app/router/Options/Options.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Container from "@components/Container";
import Navbar from "@components/Navbar";
import { PopiconsArrowUpLine } from "@popicons/react";
import Accounts from "@screens/Accounts";
import AccountDetail from "@screens/Accounts/Detail";
import ConfirmPayment from "@screens/ConfirmPayment";
Expand Down Expand Up @@ -160,7 +161,7 @@ const Layout = () => {
</Navbar.Link>
<Navbar.Link href="https://getalby.com/discover" target="_blank">
{tCommon("discover")}
<img src="assets/icons/arrow_up_right.svg" />
<PopiconsArrowUpLine className="h-5 w-5 rotate-45" />
</Navbar.Link>
</Navbar>
<Toaster />
Expand Down
4 changes: 0 additions & 4 deletions static/assets/icons/arrow_up_right.svg

This file was deleted.

0 comments on commit 4a8362c

Please sign in to comment.