diff options
author | crupest <crupest@outlook.com> | 2021-07-01 20:38:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-01 20:38:28 +0800 |
commit | eb306e98fb94fdfbced7b7e91ffb3d85ecb28c2c (patch) | |
tree | 5afe2d654a51c8712aa30a419f6edfa19fe1a234 /FrontEnd/src/views/user/UserCard.tsx | |
parent | 825aac426d87180e62530321320fbb012efbd897 (diff) | |
parent | b456334cedad566bf2c4c66481ec928dc59eda7d (diff) | |
download | timeline-eb306e98fb94fdfbced7b7e91ffb3d85ecb28c2c.tar.gz timeline-eb306e98fb94fdfbced7b7e91ffb3d85ecb28c2c.tar.bz2 timeline-eb306e98fb94fdfbced7b7e91ffb3d85ecb28c2c.zip |
Merge pull request #649 from crupest/drop-bootstrap
Drop bootstrap!!!
Diffstat (limited to 'FrontEnd/src/views/user/UserCard.tsx')
-rw-r--r-- | FrontEnd/src/views/user/UserCard.tsx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/FrontEnd/src/views/user/UserCard.tsx b/FrontEnd/src/views/user/UserCard.tsx index e7e4252e..739d26ee 100644 --- a/FrontEnd/src/views/user/UserCard.tsx +++ b/FrontEnd/src/views/user/UserCard.tsx @@ -16,14 +16,16 @@ const UserCard: React.FC<TimelinePageCardProps> = (props) => { <TimelinePageCardTemplate infoArea={ <> - <h3 className="tl-color-primary d-inline-block align-middle"> + <h3 className="cru-color-primary d-inline-block"> {timeline.title} - <small className="ms-3 text-secondary">{timeline.name}</small> + <small className="ms-3 cru-color-secondary"> + {timeline.name} + </small> </h3> - <div className="align-middle"> + <div> <UserAvatar username={timeline.owner.username} - className="avatar small rounded-circle me-3" + className="cru-avatar small cru-round me-3" /> {timeline.owner.nickname} </div> |