Skip to content

Commit

Permalink
icons hover state
Browse files Browse the repository at this point in the history
ankushKun committed May 22, 2024
1 parent 54d3bac commit 38d545c
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion next_app/src/components/ao/blueprints.tsx
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ export default function Blueprints() {
if (!project.process) return toast({ title: "Process id missing", description: "The active project doesnot seem to have a process id" });
setOpen(true);
}}>
<div className="flex flex-col items-center justify-start hover:opacity-70 active:opacity-50">
<div className="flex flex-col items-center justify-start opacity-50 hover:opacity-80 active:opacity-100">
{/* <Image src={Icons.blueprintsSVG} alt="Blueprints" width={22} height={22} className="my-2" /> */}
<LucidIcons.blueprints className="my-2 fill-foreground" />
<div className="text-xs">BLUEPRINTS</div>
2 changes: 1 addition & 1 deletion next_app/src/components/ao/modules.tsx
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ export default function Modules() {
if (!project.process) return toast({ title: "Process id missing", description: "The active project doesnot seem to have a process id" });
setOpen(true);
}}>
<div className="flex flex-col items-center justify-center hover:opacity-70 active:opacity-50">
<div className="flex flex-col items-center justify-center opacity-50 hover:opacity-80 active:opacity-100">
{/* <Image src={Icons.modulesSVG} alt="Modules" width={20} height={20} className="my-1 hover:invert" /> */}
<LucidIcons.modules className="my-1 fill-foreground" />
<div className="text-xs">MODULES</div>
2 changes: 1 addition & 1 deletion next_app/src/components/ao/share.tsx
Original file line number Diff line number Diff line change
@@ -91,7 +91,7 @@ export default function Share() {
if (!project.process) return toast({ title: "Process id missing", description: "The active project doesnot seem to have a process id" });
setOpen(true);
}}>
<div className="flex flex-col items-center justify-start hover:opacity-70 active:opacity-50">
<div className="flex flex-col items-center justify-start opacity-50 hover:opacity-80 active:opacity-100">
{/* <Image src={Icons.shareSVG} alt="Send" width={22} height={22} className="my-2" /> */}
<LucidIcons.share className="my-2 fill-foreground" />
<div className="text-xs">SHARE</div>

0 comments on commit 38d545c

Please sign in to comment.