diff options
| author | crupest <crupest@outlook.com> | 2020-06-10 15:21:32 +0800 |
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2020-06-10 15:21:32 +0800 |
| commit | 35bd6bb40f89713e802fd4526dd5db0e6c3f3cd2 (patch) | |
| tree | 1be60dcceca2816595b937f959015b3d4c37ba3e /Timeline/ClientApp/src/home | |
| parent | ff8782cc9079cb56524d281bff07331d14f80462 (diff) | |
| download | timeline-35bd6bb40f89713e802fd4526dd5db0e6c3f3cd2.tar.gz timeline-35bd6bb40f89713e802fd4526dd5db0e6c3f3cd2.tar.bz2 timeline-35bd6bb40f89713e802fd4526dd5db0e6c3f3cd2.zip | |
feat(front): Fix #75 .
Diffstat (limited to 'Timeline/ClientApp/src/home')
| -rw-r--r-- | Timeline/ClientApp/src/home/TimelineBoard.tsx | 2 | ||||
| -rw-r--r-- | Timeline/ClientApp/src/home/home.sass | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/Timeline/ClientApp/src/home/TimelineBoard.tsx b/Timeline/ClientApp/src/home/TimelineBoard.tsx index 38a5fcf8..2e017bf7 100644 --- a/Timeline/ClientApp/src/home/TimelineBoard.tsx +++ b/Timeline/ClientApp/src/home/TimelineBoard.tsx @@ -35,7 +35,7 @@ const TimelineBoard: React.FC<TimelineBoardProps> = props => { ? `/users/${timeline.owner.username}`
: `/timelines/${name}`;
return (
- <div key={name} className="timeline-item">
+ <div key={name} className="timeline-board-item">
{isPersonal ? (
<UserTimelineLogo className="icon" />
) : (
diff --git a/Timeline/ClientApp/src/home/home.sass b/Timeline/ClientApp/src/home/home.sass index 9f9937ac..28a2e5f3 100644 --- a/Timeline/ClientApp/src/home/home.sass +++ b/Timeline/ClientApp/src/home/home.sass @@ -1,8 +1,4 @@ -.timeline-item-icon
- width: 1em
- height: 1em
-
-.timeline-item
+.timeline-board-item
font-size: 1.1em
@extend .my-2
.icon
|
