diff --git a/components/Checkbox.tsx b/components/Checkbox.tsx index e4e5de15..6c661c57 100644 --- a/components/Checkbox.tsx +++ b/components/Checkbox.tsx @@ -20,11 +20,11 @@ export default function Checkbox({ label, state, className, onClick }: Props) { /> {label} diff --git a/components/Modal/Collection/DeleteCollection.tsx b/components/Modal/Collection/DeleteCollection.tsx index e4ba0063..58941d7d 100644 --- a/components/Modal/Collection/DeleteCollection.tsx +++ b/components/Modal/Collection/DeleteCollection.tsx @@ -99,7 +99,7 @@ export default function DeleteCollection({ ) : (

- Click the button below to leave the current collection: + Click the button below to leave the current collection.

)} diff --git a/components/Modal/Collection/index.tsx b/components/Modal/Collection/index.tsx index e1e40eeb..747a7420 100644 --- a/components/Modal/Collection/index.tsx +++ b/components/Modal/Collection/index.tsx @@ -57,7 +57,7 @@ export default function CollectionModal({ selected - ? "px-2 py-1 bg-sky-200 dark:bg-sky-500 dark:text-white duration-100 rounded-md outline-none" + ? "px-2 py-1 bg-sky-200 dark:bg-sky-800 dark:text-white duration-100 rounded-md outline-none" : "px-2 py-1 hover:bg-slate-200 hover:dark:bg-neutral-700 hover:dark:text-white rounded-md duration-100 outline-none" } > @@ -67,7 +67,7 @@ export default function CollectionModal({ selected - ? "px-2 py-1 bg-sky-200 dark:bg-sky-500 dark:text-white duration-100 rounded-md outline-none" + ? "px-2 py-1 bg-sky-200 dark:bg-sky-800 dark:text-white duration-100 rounded-md outline-none" : "px-2 py-1 hover:bg-slate-200 hover:dark:bg-neutral-700 hover:dark:text-white rounded-md duration-100 outline-none" } > @@ -76,7 +76,7 @@ export default function CollectionModal({ selected - ? "px-2 py-1 bg-sky-200 dark:bg-sky-500 dark:text-white duration-100 rounded-md outline-none" + ? "px-2 py-1 bg-sky-200 dark:bg-sky-800 dark:text-white duration-100 rounded-md outline-none" : "px-2 py-1 hover:bg-slate-200 hover:dark:bg-neutral-700 hover:dark:text-white rounded-md duration-100 outline-none" } > diff --git a/components/Modal/Link/LinkDetails.tsx b/components/Modal/Link/LinkDetails.tsx index 6dd11bb4..87ab06f8 100644 --- a/components/Modal/Link/LinkDetails.tsx +++ b/components/Modal/Link/LinkDetails.tsx @@ -247,7 +247,7 @@ export default function LinkDetails({ link, isOwnerOrMod }: Props) { > @@ -257,7 +257,7 @@ export default function LinkDetails({ link, isOwnerOrMod }: Props) { > @@ -281,7 +281,7 @@ export default function LinkDetails({ link, isOwnerOrMod }: Props) { > @@ -291,7 +291,7 @@ export default function LinkDetails({ link, isOwnerOrMod }: Props) { > diff --git a/components/Modal/Link/index.tsx b/components/Modal/Link/index.tsx index 36282e59..3f9f2437 100644 --- a/components/Modal/Link/index.tsx +++ b/components/Modal/Link/index.tsx @@ -43,7 +43,7 @@ export default function LinkModal({ selected - ? "px-2 py-1 bg-sky-200 dark:bg-sky-600 duration-100 rounded-md outline-none" + ? "px-2 py-1 bg-sky-200 dark:bg-sky-800 duration-100 rounded-md outline-none" : "px-2 py-1 hover:bg-slate-200 hover:dark:bg-neutral-700 rounded-md duration-100 outline-none" } > @@ -52,7 +52,7 @@ export default function LinkModal({ selected - ? "px-2 py-1 bg-sky-200 dark:bg-sky-600 duration-100 rounded-md outline-none" + ? "px-2 py-1 bg-sky-200 dark:bg-sky-800 duration-100 rounded-md outline-none" : "px-2 py-1 hover:bg-slate-200 hover:dark:bg-neutral-700 rounded-md duration-100 outline-none" } > diff --git a/components/Modal/User/index.tsx b/components/Modal/User/index.tsx index dacadfb5..d898ab5a 100644 --- a/components/Modal/User/index.tsx +++ b/components/Modal/User/index.tsx @@ -31,7 +31,7 @@ export default function UserModal({ selected - ? "px-2 py-1 bg-sky-200 dark:bg-sky-500 dark:text-white duration-100 rounded-md outline-none" + ? "px-2 py-1 bg-sky-200 dark:bg-sky-800 dark:text-white duration-100 rounded-md outline-none" : "px-2 py-1 hover:bg-slate-200 hover:dark:bg-neutral-700 rounded-md duration-100 outline-none" } > @@ -41,7 +41,7 @@ export default function UserModal({ selected - ? "px-2 py-1 bg-sky-200 dark:bg-sky-500 dark:text-white duration-100 rounded-md outline-none" + ? "px-2 py-1 bg-sky-200 dark:bg-sky-800 dark:text-white duration-100 rounded-md outline-none" : "px-2 py-1 hover:bg-slate-200 hover:dark:bg-neutral-700 rounded-md duration-100 outline-none" } > @@ -51,7 +51,7 @@ export default function UserModal({ selected - ? "px-2 py-1 bg-sky-200 dark:bg-sky-500 dark:text-white duration-100 rounded-md outline-none" + ? "px-2 py-1 bg-sky-200 dark:bg-sky-800 dark:text-white duration-100 rounded-md outline-none" : "px-2 py-1 hover:bg-slate-200 hover:dark:bg-neutral-700 rounded-md duration-100 outline-none" } > @@ -62,7 +62,7 @@ export default function UserModal({ selected - ? "px-2 py-1 bg-sky-200 dark:bg-sky-500 duration-100 rounded-md outline-none" + ? "px-2 py-1 bg-sky-200 dark:bg-sky-800 duration-100 rounded-md outline-none" : "px-2 py-1 hover:bg-slate-200 hover:dark:bg-neutral-700 rounded-md duration-100 outline-none" } > diff --git a/components/RadioButton.tsx b/components/RadioButton.tsx index fb217d9a..5775e313 100644 --- a/components/RadioButton.tsx +++ b/components/RadioButton.tsx @@ -20,11 +20,11 @@ export default function RadioButton({ label, state, onClick }: Props) { /> {label} diff --git a/components/Search.tsx b/components/Search.tsx index 4034a7c4..fe61ef49 100644 --- a/components/Search.tsx +++ b/components/Search.tsx @@ -24,7 +24,7 @@ export default function Search() { > diff --git a/components/Sidebar.tsx b/components/Sidebar.tsx index 90a98423..d121ae26 100644 --- a/components/Sidebar.tsx +++ b/components/Sidebar.tsx @@ -58,13 +58,13 @@ export default function Sidebar({ className }: { className?: string }) { href="/dashboard" className={`${ active === "/dashboard" - ? "bg-sky-200 dark:bg-sky-600" + ? "bg-sky-200 dark:bg-sky-800" : "hover:bg-slate-200 hover:dark:bg-neutral-700" } outline-sky-100 outline-1 duration-100 py-1 px-2 rounded-md cursor-pointer flex justify-center flex-col items-center gap-1 w-full`} >

@@ -76,13 +76,13 @@ export default function Sidebar({ className }: { className?: string }) { href="/links" className={`${ active === "/links" - ? "bg-sky-200 dark:bg-sky-600" + ? "bg-sky-200 dark:bg-sky-800" : "hover:bg-slate-200 hover:dark:bg-neutral-700" } outline-sky-100 outline-1 duration-100 py-1 px-2 rounded-md cursor-pointer flex justify-center flex-col items-center gap-1 w-full`} >

@@ -94,13 +94,13 @@ export default function Sidebar({ className }: { className?: string }) { href="/collections" className={`${ active === "/collections" - ? "bg-sky-200 dark:bg-sky-600" + ? "bg-sky-200 dark:bg-sky-800" : "hover:bg-slate-200 hover:dark:bg-neutral-700" } outline-sky-100 outline-1 duration-100 py-1 px-2 rounded-md cursor-pointer flex justify-center flex-col items-center gap-1 w-full`} >

@@ -143,7 +143,7 @@ export default function Sidebar({ className }: { className?: string }) {

@@ -203,13 +203,13 @@ export default function Sidebar({ className }: { className?: string }) {

diff --git a/pages/collections/index.tsx b/pages/collections/index.tsx index 2d7a0d3f..73ed25f7 100644 --- a/pages/collections/index.tsx +++ b/pages/collections/index.tsx @@ -37,7 +37,7 @@ export default function Collections() {

All Collections @@ -125,7 +125,7 @@ export default function Collections() {

diff --git a/pages/dashboard.tsx b/pages/dashboard.tsx index 63c4e4a9..579a15b8 100644 --- a/pages/dashboard.tsx +++ b/pages/dashboard.tsx @@ -52,7 +52,7 @@ export default function Dashboard() {

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

-

+

{numberOfLinks}

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

-

+

{collections.length}

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

-

+

{tags.length}

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

Pinned Links

diff --git a/pages/links.tsx b/pages/links.tsx index 91dcef6a..4429079d 100644 --- a/pages/links.tsx +++ b/pages/links.tsx @@ -24,7 +24,7 @@ export default function Links() {

All Links diff --git a/pages/search/[query].tsx b/pages/search/[query].tsx index 064f8e3e..0ed78b25 100644 --- a/pages/search/[query].tsx +++ b/pages/search/[query].tsx @@ -40,7 +40,7 @@ export default function Links() {

Search Results diff --git a/pages/tags/[id].tsx b/pages/tags/[id].tsx index b6be1454..97a92282 100644 --- a/pages/tags/[id].tsx +++ b/pages/tags/[id].tsx @@ -36,7 +36,7 @@ export default function Index() {

{activeTag?.name}