diff options
author | crupest <crupest@outlook.com> | 2020-07-31 00:57:22 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-07-31 00:57:22 +0800 |
commit | 4d17746be0daff8f566ec102d4d119321cda8c53 (patch) | |
tree | 1aa2d67ae16cb2eb2b4524ab8c8d79d1ab09b5a0 /Timeline/ClientApp/src/app/timeline/Timeline.tsx | |
parent | 4e5a42bfb82aacfcc6d2d1be24aaceb73b4b154d (diff) | |
download | timeline-4d17746be0daff8f566ec102d4d119321cda8c53.tar.gz timeline-4d17746be0daff8f566ec102d4d119321cda8c53.tar.bz2 timeline-4d17746be0daff8f566ec102d4d119321cda8c53.zip |
Add sync state badge.
Diffstat (limited to 'Timeline/ClientApp/src/app/timeline/Timeline.tsx')
-rw-r--r-- | Timeline/ClientApp/src/app/timeline/Timeline.tsx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Timeline/ClientApp/src/app/timeline/Timeline.tsx b/Timeline/ClientApp/src/app/timeline/Timeline.tsx index 849933cf..7c3a93fb 100644 --- a/Timeline/ClientApp/src/app/timeline/Timeline.tsx +++ b/Timeline/ClientApp/src/app/timeline/Timeline.tsx @@ -53,10 +53,7 @@ const Timeline: React.FC<TimelineProps> = (props) => { return (
<div
ref={props.containerRef}
- className={clsx(
- 'container-fluid d-flex flex-column position-relative',
- props.className
- )}
+ className={clsx('container-fluid timeline', props.className)}
>
<div className="timeline-enter-animation-mask" />
{(() => {
|