diff options
author | crupest <crupest@outlook.com> | 2021-06-23 13:27:55 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-06-23 13:27:55 +0800 |
commit | 17223a97f98f2c4b67fc28af208ce6c6e230a677 (patch) | |
tree | 145f3285a9d469484a374e1f1cd61a558745c309 /FrontEnd/src/views/timeline-common/TimelinePostView.tsx | |
parent | 314e95b970b686a97d0965c7a5e957f13d20c37b (diff) | |
download | timeline-17223a97f98f2c4b67fc28af208ce6c6e230a677.tar.gz timeline-17223a97f98f2c4b67fc28af208ce6c6e230a677.tar.bz2 timeline-17223a97f98f2c4b67fc28af208ce6c6e230a677.zip |
feat: Optimize timeline post option mask.
Diffstat (limited to 'FrontEnd/src/views/timeline-common/TimelinePostView.tsx')
-rw-r--r-- | FrontEnd/src/views/timeline-common/TimelinePostView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FrontEnd/src/views/timeline-common/TimelinePostView.tsx b/FrontEnd/src/views/timeline-common/TimelinePostView.tsx index 6d0d1f2e..7b16e898 100644 --- a/FrontEnd/src/views/timeline-common/TimelinePostView.tsx +++ b/FrontEnd/src/views/timeline-common/TimelinePostView.tsx @@ -92,7 +92,7 @@ const TimelinePostView: React.FC<TimelinePostViewProps> = (props) => { </div> {operationMaskVisible ? ( <div - className="timeline-post-item-options-mask d-flex justify-content-around align-items-center" + className="timeline-post-item-options-mask" onClick={() => { setOperationMaskVisible(false); }} |