aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/app/views/home/BoardWithUser.tsx
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-11-04 12:29:55 +0800
committerGitHub <noreply@github.com>2020-11-04 12:29:55 +0800
commit013baff7500c773082d79b03a44a5e2aa2072ae2 (patch)
treec03aaf0842a526e47c29e4b24a414cc7016b4d07 /FrontEnd/src/app/views/home/BoardWithUser.tsx
parentfc3c2de7b4f431f0edcabb5ead2a2e1aa79d665a (diff)
parenta20b15c1c79cd49ee4be7ac3fba80955704122d3 (diff)
downloadtimeline-013baff7500c773082d79b03a44a5e2aa2072ae2.tar.gz
timeline-013baff7500c773082d79b03a44a5e2aa2072ae2.tar.bz2
timeline-013baff7500c773082d79b03a44a5e2aa2072ae2.zip
Merge pull request #165 from crupest/timeline
Redesign timeline ui.
Diffstat (limited to 'FrontEnd/src/app/views/home/BoardWithUser.tsx')
-rw-r--r--FrontEnd/src/app/views/home/BoardWithUser.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/FrontEnd/src/app/views/home/BoardWithUser.tsx b/FrontEnd/src/app/views/home/BoardWithUser.tsx
index dcd39cbe..fbe1dd89 100644
--- a/FrontEnd/src/app/views/home/BoardWithUser.tsx
+++ b/FrontEnd/src/app/views/home/BoardWithUser.tsx
@@ -62,9 +62,9 @@ const BoardWithUser: React.FC<{ user: UserWithToken }> = ({ user }) => {
}, [user, joinTimelines]);
return (
- <Row className="my-2 justify-content-center">
+ <Row className="my-3 justify-content-center">
{ownTimelines === "offline" && joinTimelines === "offline" ? (
- <Col className="py-2" sm="8" lg="6">
+ <Col sm="8" lg="6">
<OfflineBoard
onReload={() => {
setOwnTimelines("loading");
@@ -74,7 +74,7 @@ const BoardWithUser: React.FC<{ user: UserWithToken }> = ({ user }) => {
</Col>
) : (
<>
- <Col sm="6" lg="5" className="py-2">
+ <Col sm="6" lg="5" className="mb-3 mb-sm-0">
<TimelineBoard
title={t("home.ownTimeline")}
timelines={ownTimelines}
@@ -83,7 +83,7 @@ const BoardWithUser: React.FC<{ user: UserWithToken }> = ({ user }) => {
}}
/>
</Col>
- <Col sm="6" lg="5" className="py-2">
+ <Col sm="6" lg="5">
<TimelineBoard
title={t("home.joinTimeline")}
timelines={joinTimelines}