diff --git a/components/LinkCard.tsx b/components/LinkCard.tsx index 17fcfd6..8f186f9 100644 --- a/components/LinkCard.tsx +++ b/components/LinkCard.tsx @@ -106,7 +106,7 @@ export default function LinkCard({ link, count, className }: Props) { return (
{(permissions === true || permissions?.canUpdate || @@ -144,7 +144,7 @@ export default function LinkCard({ link, count, className }: Props) { width={64} height={64} alt="" - className="blur-sm absolute w-16 group-hover:opacity-80 duration-100 rounded-md bottom-5 right-5 opacity-60 select-none" + className="blur-sm absolute w-16 group-hover:opacity-80 duration-100 rounded-2xl bottom-5 right-5 opacity-60 select-none" draggable="false" onError={(e) => { const target = e.target as HTMLElement; diff --git a/layouts/MainLayout.tsx b/layouts/MainLayout.tsx index b64d93e..87d15e6 100644 --- a/layouts/MainLayout.tsx +++ b/layouts/MainLayout.tsx @@ -36,7 +36,7 @@ export default function MainLayout({ children }: Props) {
-
+
{children}
diff --git a/pages/dashboard.tsx b/pages/dashboard.tsx index 579a15b..2a528fd 100644 --- a/pages/dashboard.tsx +++ b/pages/dashboard.tsx @@ -47,7 +47,7 @@ export default function Dashboard() { return ( -
+
-
+

{numberOfLinks}

@@ -70,7 +70,7 @@ export default function Dashboard() {

-
+

{collections.length}

@@ -79,7 +79,7 @@ export default function Dashboard() {

-
+

{tags.length}

@@ -113,7 +113,10 @@ export default function Dashboard() { ) : undefined}
-
+
{links.some((e) => e.pinnedBy && e.pinnedBy[0]) ? (
) : ( -
+

- No Pinned Links + Pin Your Favorite Links Here!

-

+

You can Pin your favorite Links by clicking on the three dots on each Link and clicking{" "} Pin to Dashboard. diff --git a/styles/globals.css b/styles/globals.css index 5b3f4d4..f4538de 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -227,3 +227,7 @@ @apply dark:text-white; } } + +.sky-shadow { + box-shadow: 0px 0px 3px #0ea5e9; +}