refactor: simplify some markups and styles

This commit is contained in:
rusconn
2023-10-14 23:36:37 +09:00
parent e1e512b594
commit 612613859c
4 changed files with 21 additions and 22 deletions

View File

@@ -26,9 +26,9 @@ function RawToolLink({ Icon, shortTitle: title, href, onClick, className, highli
<span className={cn("invisible flex items-center", highlight !== "none" && "visible")}>
<Indicator />
</span>
<span className="flex select-none items-center">
<span className="flex select-none items-center gap-4">
<Icon size={16} />
<span className="ml-4">{title}</span>
<span>{title}</span>
</span>
</Link>
);