fix: mobile ui for rewind

This commit is contained in:
Gabe Farrell 2025-12-31 19:23:20 -05:00
parent d4ac96f780
commit ad3c51a70e
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ export default function Rewind(props: Props) {
includeTime={props.includeTime}
/>
<div className="grid grid-cols-3 gap-y-5">
<div className="grid grid-cols-1 sm:grid-cols-3 gap-y-5">
<RewindStatText
figure={`${props.stats.minutes_listened}`}
text="Minutes listened"

View file

@ -18,7 +18,7 @@ export function RewindTopItem<
if (!top) return null;
return (
<div className="flex gap-5">
<div className="flex flex-col sm:flex-row gap-5">
<div className="rewind-top-item-image">
<img className="max-w-48 max-h-48" src={imageSrc} />
</div>