diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 874953f..92fb639 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -21,7 +21,7 @@ export function App() { } return ( -
+
diff --git a/frontend/src/components/Footer.tsx b/frontend/src/components/Footer.tsx index 591c837..9c2d0b5 100644 --- a/frontend/src/components/Footer.tsx +++ b/frontend/src/components/Footer.tsx @@ -7,7 +7,7 @@ const VERSION = process.env.REACT_APP_VERSION || "Unknown"; export const Footer: React.FC = () => { return ( -
+
{ return (

Login Failure

Something not ideal might be happening.

-

-

    +

    +

    • Source: {source}
    • Reason: {reason}
    diff --git a/frontend/src/components/LoginLoading.tsx b/frontend/src/components/LoginLoading.tsx index b98f4c1..6999bfd 100644 --- a/frontend/src/components/LoginLoading.tsx +++ b/frontend/src/components/LoginLoading.tsx @@ -2,12 +2,12 @@ import React from "react"; import { Spinner } from "./Spinner"; export const LoginLoading: React.FC = () => ( -
    -
    -
    +
    +
    +
    Listory
    -

    +

    Logging in

    diff --git a/frontend/src/components/NavBar.tsx b/frontend/src/components/NavBar.tsx index 21aef93..93840c0 100644 --- a/frontend/src/components/NavBar.tsx +++ b/frontend/src/components/NavBar.tsx @@ -8,7 +8,7 @@ export const NavBar: React.FC = () => { const { user, loginWithSpotifyProps } = useAuth(); return ( -
    +
    Listory
    diff --git a/frontend/src/components/RecentListens.tsx b/frontend/src/components/RecentListens.tsx index 8664606..1c97400 100644 --- a/frontend/src/components/RecentListens.tsx +++ b/frontend/src/components/RecentListens.tsx @@ -32,7 +32,9 @@ export const RecentListens: React.FC = () => {
    -

    Recent listens

    +

    + Recent listens +

    -
    +
    {isLoading && } {recentListens.length === 0 && ( -
    -

    Could not find any listens!

    +
    +

    + Could not find any listens! +

    )}
    {recentListens.length > 0 && ( -
    +
    {recentListens.map((listen) => ( ))} @@ -69,6 +73,9 @@ const Pagination: React.FC<{ setPage: (newPage: number) => void; }> = ({ page, totalPages, setPage }) => { const disabledBtn = "opacity-50 cursor-default"; + const hoverBtn = "hover:bg-gray-400 dark:hover:bg-gray-600"; + const defaultBtn = + "bg-gray-300 dark:bg-gray-700 text-gray-700 dark:text-gray-300 font-bold py-2 px-4"; const pageButtons = getPaginationItems(page, totalPages, 1); const isFirstPage = page === 1; @@ -78,8 +85,8 @@ const Pagination: React.FC<{