mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
fix: create shared class to add bottom spacing (#3269)
This commit is contained in:
@@ -667,7 +667,7 @@ const IssueDetails = () => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="h-16 sm:h-0" />
|
<div className="extra-bottom-space" />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@@ -834,7 +834,7 @@ const MovieDetails = ({ movie }: MovieDetailsProps) => {
|
|||||||
linkUrl={`/movie/${data.id}/similar`}
|
linkUrl={`/movie/${data.id}/similar`}
|
||||||
hideWhenEmpty
|
hideWhenEmpty
|
||||||
/>
|
/>
|
||||||
<div className="relative h-32 sm:h-8" />
|
<div className="extra-bottom-space relative" />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@@ -1016,7 +1016,7 @@ const TvDetails = ({ tv }: TvDetailsProps) => {
|
|||||||
linkUrl={`/tv/${data.id}/similar`}
|
linkUrl={`/tv/${data.id}/similar`}
|
||||||
hideWhenEmpty
|
hideWhenEmpty
|
||||||
/>
|
/>
|
||||||
<div className="relative h-32 sm:h-8" />
|
<div className="extra-bottom-space relative" />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@@ -507,6 +507,10 @@
|
|||||||
@apply hidden;
|
@apply hidden;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.extra-bottom-space {
|
||||||
|
height: calc(4rem + env(safe-area-inset-bottom));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.ptr--ptr {
|
.ptr--ptr {
|
||||||
|
Reference in New Issue
Block a user