diff --git a/client/app/app.css b/client/app/app.css index e43f0e4..217e955 100644 --- a/client/app/app.css +++ b/client/app/app.css @@ -63,7 +63,7 @@ @media (min-width: 60rem) { :root { --header-xl: 78px; - --header-lg: 44px; + --header-lg: 36px; --header-md: 22px; --header-sm: 16px; --header-xl-weight: 600; diff --git a/client/app/components/rewind/Rewind.tsx b/client/app/components/rewind/Rewind.tsx index 6ec127f..45b32db 100644 --- a/client/app/components/rewind/Rewind.tsx +++ b/client/app/components/rewind/Rewind.tsx @@ -1,9 +1,10 @@ import { imageUrl, type RewindStats } from "api/api"; -import RewindTopItem from "./RewindTopItem"; +import RewindStatText from "./RewindStatText"; +import { RewindTopItem } from "./RewindTopItem"; interface Props { stats: RewindStats; - includeTime: boolean; + includeTime?: boolean; } export default function Rewind(props: Props) { @@ -11,103 +12,60 @@ export default function Rewind(props: Props) { const albumimg = props.stats.top_albums[0].image; const trackimg = props.stats.top_tracks[0].image; return ( -