[resumes][chore] remove overflow on page components

This commit is contained in:
Wu Peirong
2022-11-03 12:43:04 +08:00
parent c86c77d1e0
commit f7d1c8d2c4
4 changed files with 8 additions and 8 deletions

View File

@@ -57,7 +57,7 @@ export default function ResumeCommentsList({
}
return (
<div className="mb-8 flow-root h-[calc(100vh-13rem)] w-full flex-col space-y-10 overflow-y-auto overflow-x-hidden pb-16">
<div className="flow-root w-full flex-col space-y-10 overflow-y-auto overflow-x-hidden lg:h-[calc(100vh-13rem)]">
{RESUME_COMMENTS_SECTIONS.map(({ label, value }) => {
const comments = commentsQuery.data
? commentsQuery.data.filter((comment: ResumeComment) => {