diff options
author | crupest <crupest@outlook.com> | 2020-11-04 12:01:50 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-11-04 12:01:50 +0800 |
commit | 0bc6b4495ae63b652877a8145d0acca9213fa348 (patch) | |
tree | 79b5e43824304e96505d35ec5c8680709c8df9c5 /FrontEnd/src/app/views/timeline-common/Timeline.tsx | |
parent | 34221c8c6d34e565c4c9d82413ac4a20356d8f78 (diff) | |
download | timeline-0bc6b4495ae63b652877a8145d0acca9213fa348.tar.gz timeline-0bc6b4495ae63b652877a8145d0acca9213fa348.tar.bz2 timeline-0bc6b4495ae63b652877a8145d0acca9213fa348.zip |
feat: Enhance design.
Diffstat (limited to 'FrontEnd/src/app/views/timeline-common/Timeline.tsx')
-rw-r--r-- | FrontEnd/src/app/views/timeline-common/Timeline.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/FrontEnd/src/app/views/timeline-common/Timeline.tsx b/FrontEnd/src/app/views/timeline-common/Timeline.tsx index 6bd1b96d..9047919c 100644 --- a/FrontEnd/src/app/views/timeline-common/Timeline.tsx +++ b/FrontEnd/src/app/views/timeline-common/Timeline.tsx @@ -14,6 +14,7 @@ export type TimelineDeleteCallback = (index: number, id: number) => void; export interface TimelineProps { className?: string; + style?: React.CSSProperties; posts: TimelinePostInfoEx[]; onDelete: TimelineDeleteCallback; onResize?: () => void; @@ -52,7 +53,11 @@ const Timeline: React.FC<TimelineProps> = (props) => { }, [posts, onDelete]); return ( - <div ref={props.containerRef} className={clsx("timeline", props.className)}> + <div + ref={props.containerRef} + style={props.style} + className={clsx("timeline", props.className)} + > <TimelineTop height="56px" /> {(() => { const length = posts.length; |