diff options
author | crupest <crupest@outlook.com> | 2021-05-17 20:47:14 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-05-17 20:47:14 +0800 |
commit | 7d847632c59e247189f9039385aac1d630e87212 (patch) | |
tree | 6db9912f2ed9128a098f6887ba36af19a6e56921 /FrontEnd/src/app/views | |
parent | afd3f8504f5db812c0e9689729ec884c21683e2a (diff) | |
download | timeline-7d847632c59e247189f9039385aac1d630e87212.tar.gz timeline-7d847632c59e247189f9039385aac1d630e87212.tar.bz2 timeline-7d847632c59e247189f9039385aac1d630e87212.zip |
feat: Card title color is now theme color.
Diffstat (limited to 'FrontEnd/src/app/views')
-rw-r--r-- | FrontEnd/src/app/views/timeline/TimelineCard.tsx | 2 | ||||
-rw-r--r-- | FrontEnd/src/app/views/user/UserCard.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/FrontEnd/src/app/views/timeline/TimelineCard.tsx b/FrontEnd/src/app/views/timeline/TimelineCard.tsx index 0cb908cc..317eedd0 100644 --- a/FrontEnd/src/app/views/timeline/TimelineCard.tsx +++ b/FrontEnd/src/app/views/timeline/TimelineCard.tsx @@ -17,7 +17,7 @@ const TimelineCard: React.FC<TimelinePageCardProps> = (props) => { <TimelinePageCardTemplate infoArea={ <> - <h3 className="text-primary d-inline-block align-middle"> + <h3 className="tl-color-primary d-inline-block align-middle"> {timeline.title} <small className="ms-3 text-secondary">{timeline.name}</small> </h3> diff --git a/FrontEnd/src/app/views/user/UserCard.tsx b/FrontEnd/src/app/views/user/UserCard.tsx index df332706..4b8a401a 100644 --- a/FrontEnd/src/app/views/user/UserCard.tsx +++ b/FrontEnd/src/app/views/user/UserCard.tsx @@ -15,7 +15,7 @@ const UserCard: React.FC<TimelinePageCardProps> = (props) => { <TimelinePageCardTemplate infoArea={ <> - <h3 className="text-primary d-inline-block align-middle"> + <h3 className="tl-color-primary d-inline-block align-middle"> {timeline.title} <small className="ms-3 text-secondary">{timeline.name}</small> </h3> |