diff options
author | crupest <crupest@outlook.com> | 2021-07-06 00:24:03 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-07-06 00:24:03 +0800 |
commit | 1bc3f67b737ec65bb4e7a825233ebadedbac4187 (patch) | |
tree | 5bbb46b1b63d577cd5a1dd114f20a4a923a43c1e /FrontEnd/src/views/timeline-common/TimelinePageCardTemplate.tsx | |
parent | 6b270e9845bf094d1942b95ded4878a8d6aa98f7 (diff) | |
download | timeline-1bc3f67b737ec65bb4e7a825233ebadedbac4187.tar.gz timeline-1bc3f67b737ec65bb4e7a825233ebadedbac4187.tar.bz2 timeline-1bc3f67b737ec65bb4e7a825233ebadedbac4187.zip |
feat: Remove space before connection badge.
Diffstat (limited to 'FrontEnd/src/views/timeline-common/TimelinePageCardTemplate.tsx')
-rw-r--r-- | FrontEnd/src/views/timeline-common/TimelinePageCardTemplate.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FrontEnd/src/views/timeline-common/TimelinePageCardTemplate.tsx b/FrontEnd/src/views/timeline-common/TimelinePageCardTemplate.tsx index 5c2fb275..75951ece 100644 --- a/FrontEnd/src/views/timeline-common/TimelinePageCardTemplate.tsx +++ b/FrontEnd/src/views/timeline-common/TimelinePageCardTemplate.tsx @@ -113,7 +113,7 @@ const TimelinePageCardTemplate: React.FC<TimelineCardTemplateProps> = ({ return ( <> <Card className={classnames("p-2 cru-clearfix", className)}> - <div className="cru-float-right ms-3 d-flex align-items-center"> + <div className="cru-float-right ms-3 ms-sm-0 d-flex align-items-center"> <ConnectionStatusBadge status={connectionStatus} className="me-2" /> <CollapseButton collapse={collapse} onClick={toggleCollapse} /> </div> |