feat: improved Links UI

This commit is contained in:
Daniel
2023-03-11 08:40:10 +03:30
parent 48bdf29161
commit 9304870178
5 changed files with 35 additions and 26 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ interface SidebarItemProps {
export default function ({ text, icon, path }: SidebarItemProps) {
return (
<Link href={path}>
<div className="hover:bg-gray-50 duration-100 rounded my-1 p-3 cursor-pointer flex items-center gap-2">
<div className="hover:bg-gray-50 hover:outline outline-sky-100 outline-1 duration-100 rounded my-1 p-3 cursor-pointer flex items-center gap-2">
<FontAwesomeIcon icon={icon} className="w-4 text-sky-300" />
<p className="text-sky-900">{text}</p>
</div>