aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/center/TimelineBoard.tsx
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-07-01 16:43:59 +0800
committercrupest <crupest@outlook.com>2021-07-01 16:43:59 +0800
commit81e54efaae0ec1d5f1f90c3ca40448f8c61f0e80 (patch)
tree63fd4f7734c1fdef1c49266c957efcb71413164b /FrontEnd/src/views/center/TimelineBoard.tsx
parente38e7bb7c113f072914f988063bd9b095f4290c0 (diff)
downloadtimeline-81e54efaae0ec1d5f1f90c3ca40448f8c61f0e80.tar.gz
timeline-81e54efaae0ec1d5f1f90c3ca40448f8c61f0e80.tar.bz2
timeline-81e54efaae0ec1d5f1f90c3ca40448f8c61f0e80.zip
...
Diffstat (limited to 'FrontEnd/src/views/center/TimelineBoard.tsx')
-rw-r--r--FrontEnd/src/views/center/TimelineBoard.tsx6
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);