From ec894ae9b1c9b19b1b31ed90387d50eaf55ae673 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Thu, 16 May 2024 04:00:20 +0500 Subject: [PATCH] feat(responsive): make a application a bit more responsive --- .../components/ReleaseCard/ReleaseCard.jsx | 13 +++- .../components/ReleaseList/ReleaseList.jsx | 71 ++++++++++++----- .../ReleasesOverview/ReleasesOverview.jsx | 78 +++++++++++++++++-- .../components/UserProfile/UserProfile.jsx | 2 - 4 files changed, 132 insertions(+), 32 deletions(-) diff --git a/frontend/app/components/ReleaseCard/ReleaseCard.jsx b/frontend/app/components/ReleaseCard/ReleaseCard.jsx index 7705def..2a99618 100644 --- a/frontend/app/components/ReleaseCard/ReleaseCard.jsx +++ b/frontend/app/components/ReleaseCard/ReleaseCard.jsx @@ -5,11 +5,18 @@ export const ReleaseCard = (props) => { return (
{/* eslint-disable-next-line @next/next/no-img-element */}
diff --git a/frontend/app/components/ReleaseList/ReleaseList.jsx b/frontend/app/components/ReleaseList/ReleaseList.jsx index 2ff6b8d..e5d39b2 100644 --- a/frontend/app/components/ReleaseList/ReleaseList.jsx +++ b/frontend/app/components/ReleaseList/ReleaseList.jsx @@ -5,29 +5,58 @@ export const ReleaseList = (props) => { return ( - + + + ); }; diff --git a/frontend/app/components/ReleasesOverview/ReleasesOverview.jsx b/frontend/app/components/ReleasesOverview/ReleasesOverview.jsx index da73865..bda0c70 100644 --- a/frontend/app/components/ReleasesOverview/ReleasesOverview.jsx +++ b/frontend/app/components/ReleasesOverview/ReleasesOverview.jsx @@ -6,9 +6,18 @@ export default function ReleasesOverview(props) { return ( <> -
+ )} -
+
-
+ + + {props.releases ? ( <> -
+
diff --git a/frontend/app/components/UserProfile/UserProfile.jsx b/frontend/app/components/UserProfile/UserProfile.jsx index 8cfc3dd..4e8d426 100644 --- a/frontend/app/components/UserProfile/UserProfile.jsx +++ b/frontend/app/components/UserProfile/UserProfile.jsx @@ -216,7 +216,6 @@ export const UserProfile = (props) => { {lastWatched.map((item) => { return ( { item.last_view_episode.name || `${item.last_view_episode.position + 1} серия` } - height={400} /> ); })}