From be281910055ef043ff62a9d11d195debca875a44 Mon Sep 17 00:00:00 2001 From: Liam Date: Wed, 9 Oct 2024 17:36:33 +0100 Subject: [PATCH] make navbar align with the page contents --- projects/website/src/components/navbar/navbar.tsx | 4 ++-- projects/website/src/components/score/score-rank-info.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/website/src/components/navbar/navbar.tsx b/projects/website/src/components/navbar/navbar.tsx index af4a5dc..4682153 100644 --- a/projects/website/src/components/navbar/navbar.tsx +++ b/projects/website/src/components/navbar/navbar.tsx @@ -46,8 +46,8 @@ export default function Navbar() { const leftItems = items.filter(item => item.align === "left"); return ( -
-
+
+
{/* Left-aligned items */}
diff --git a/projects/website/src/components/score/score-rank-info.tsx b/projects/website/src/components/score/score-rank-info.tsx index ac8924d..7e7df07 100644 --- a/projects/website/src/components/score/score-rank-info.tsx +++ b/projects/website/src/components/score/score-rank-info.tsx @@ -26,7 +26,7 @@ export default function ScoreRankInfo({ score }: Props) {

} > -

{timeAgo(new Date(score.timeSet))}

+

{timeAgo(new Date(score.timeSet))}

);