diff options
author | crupest <crupest@outlook.com> | 2021-07-01 16:43:59 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-07-01 16:43:59 +0800 |
commit | 81e54efaae0ec1d5f1f90c3ca40448f8c61f0e80 (patch) | |
tree | 63fd4f7734c1fdef1c49266c957efcb71413164b /FrontEnd/src/views/center | |
parent | e38e7bb7c113f072914f988063bd9b095f4290c0 (diff) | |
download | timeline-81e54efaae0ec1d5f1f90c3ca40448f8c61f0e80.tar.gz timeline-81e54efaae0ec1d5f1f90c3ca40448f8c61f0e80.tar.bz2 timeline-81e54efaae0ec1d5f1f90c3ca40448f8c61f0e80.zip |
...
Diffstat (limited to 'FrontEnd/src/views/center')
-rw-r--r-- | FrontEnd/src/views/center/TimelineBoard.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FrontEnd/src/views/center/TimelineBoard.tsx b/FrontEnd/src/views/center/TimelineBoard.tsx index 3961a7bc..8c1f5fac 100644 --- a/FrontEnd/src/views/center/TimelineBoard.tsx +++ b/FrontEnd/src/views/center/TimelineBoard.tsx @@ -48,16 +48,16 @@ const TimelineBoardItem: React.FC<TimelineBoardItemProps> = ({ <TimelineLogo className="icon" /> )} <span className="title">{title}</span> - <small className="ms-2 text-secondary">{name}</small> + <small className="ms-2 cru-color-secondary">{name}</small> <span className="flex-grow-1"></span> {actions != null ? ( <div className="right"> <i - className="bi-trash icon-button text-danger px-2" + className="bi-trash icon-button cru-color-danger px-2" onClick={actions.onDelete} /> <i - className="bi-grip-vertical icon-button text-gray px-2 touch-action-none" + className="bi-grip-vertical icon-button px-2 touch-action-none" onPointerDown={(e) => { e.currentTarget.setPointerCapture(e.pointerId); actions.onMove.start(e); |