Skip to content

Commit

Permalink
fix: adjust border color
Browse files Browse the repository at this point in the history
  • Loading branch information
reneaaron committed Mar 11, 2024
1 parent 6356cf3 commit 2d826a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/app/components/IconLinkCard/IconLinkCard.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CaretRightIcon } from "@bitcoin-design/bitcoin-icons-react/outline";
import { PopiconsChevronRightSolid } from "@popicons/react";

export type IconLinkCardProps = {
title: string;
Expand All @@ -15,7 +15,7 @@ export function IconLinkCard({
}: IconLinkCardProps) {
return (
<div
className="border border-gray-300 dark:border-neutral-800 rounded-xl p-4 bg-white dark:bg-surface-01dp hover:bg-gray-50 dark:hover:bg-surface-02dp text-gray-800 dark:text-neutral-200 cursor-pointer flex flex-row items-center gap-3"
className="border border-gray-200 dark:border-neutral-800 rounded-xl p-4 bg-white dark:bg-surface-01dp hover:bg-gray-50 dark:hover:bg-surface-02dp text-gray-800 dark:text-neutral-200 cursor-pointer flex flex-row items-center gap-3"
onClick={onClick}
>
<div className="flex-shrink-0 flex justify-center md:px-3">{icon}</div>
Expand All @@ -27,8 +27,8 @@ export function IconLinkCard({
{description}
</div>
</div>
<div className="flex-shrink-0 flex justify-end text-gray-400 dark:text-neutral-500 ">
<CaretRightIcon className="w-8" />
<div className="flex-shrink-0 flex justify-end text-gray-400 dark:text-neutral-600 ">
<PopiconsChevronRightSolid className="w-5" />
</div>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion src/app/screens/Home/DefaultView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ const HomeButton = ({
onClick: () => void;
}) => (
<button
className="bg-white dark:bg-surface-01dp hover:bg-amber-50 dark:hover:bg-surface-02dp text-gray-800 dark:text-neutral-200 rounded-xl border border-gray-300 dark:border-neutral-800 hover:border-primary dark:hover:border-primary flex flex-col flex-1 justify-center items-center pt-[18px] pb-3 px-[14px] text-xs font-medium gap-2"
className="bg-white dark:bg-surface-01dp hover:bg-amber-50 dark:hover:bg-surface-02dp text-gray-800 dark:text-neutral-200 rounded-xl border border-gray-200 dark:border-neutral-800 hover:border-primary dark:hover:border-primary flex flex-col flex-1 justify-center items-center pt-[18px] pb-3 px-[14px] text-xs font-medium gap-2"
onClick={onClick}
>
{icon}
Expand Down

0 comments on commit 2d826a4

Please sign in to comment.