diff options
author | crupest <crupest@outlook.com> | 2020-11-05 17:17:52 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-11-05 17:17:52 +0800 |
commit | 94bed82d32265d573e3bc47582874360a0481b34 (patch) | |
tree | d4e87aee5660fd474548748d06f6b3bee7b75a40 /FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx | |
parent | e7f63aeecc6830ca88d177d0bbb01955b663b896 (diff) | |
download | timeline-94bed82d32265d573e3bc47582874360a0481b34.tar.gz timeline-94bed82d32265d573e3bc47582874360a0481b34.tar.bz2 timeline-94bed82d32265d573e3bc47582874360a0481b34.zip |
feat: Fix #168 .
Diffstat (limited to 'FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx')
-rw-r--r-- | FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx b/FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx index 036577b1..f27171f5 100644 --- a/FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx +++ b/FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx @@ -174,9 +174,6 @@ export default function TimelinePageTemplateUI<TManageItems>( timelineBody = ( <Timeline - style={{ - minHeight: `calc(100vh - 56px - ${bottomSpaceHeight}px)`, - }} containerRef={timelineRef} posts={posts} onDelete={props.onDelete} @@ -219,6 +216,7 @@ export default function TimelinePageTemplateUI<TManageItems>( body = ( <> + <div className="timeline-background" /> <CardComponent className="timeline-template-card" timeline={timeline} |