feat(responsive): make a application a bit more responsive

This commit is contained in:
Kentai Radiquum 2024-05-16 04:00:20 +05:00
parent 0ba93f96bc
commit ec894ae9b1
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
4 changed files with 132 additions and 32 deletions

View file

@ -216,7 +216,6 @@ export const UserProfile = (props) => {
{lastWatched.map((item) => {
return (
<ReleaseCard
className={"s2"}
key={item.id}
id={item.id}
title={item.title_ru}
@ -225,7 +224,6 @@ export const UserProfile = (props) => {
item.last_view_episode.name ||
`${item.last_view_episode.position + 1} серия`
}
height={400}
/>
);
})}