From f57fc40b650c6e3f7edb281d3adf25b7989fc208 Mon Sep 17 00:00:00 2001 From: Tim deBoer Date: Tue, 30 Jan 2024 14:46:39 -0500 Subject: [PATCH] chore: change style of unknown OS download button When we can determine the user's OS, we have a nice purple Download Now button on the front page. When we can't determine the user's OS, it's a full-width blue button linking to the Download Page instead. This button doesn't match our current styling at all. I copied from the Download Now button to make it match: - Added outer div (makes it normal size and centered). - Changed indigo to purple. - Added 'mt-6 mb-1' to space it from above and below. Signed-off-by: Tim deBoer --- website/src/pages/index.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/website/src/pages/index.tsx b/website/src/pages/index.tsx index d1af796d948..7761c48eb5f 100644 --- a/website/src/pages/index.tsx +++ b/website/src/pages/index.tsx @@ -67,11 +67,13 @@ function DownloadClientLinks() { ); } else { mainButton = ( - - Download Page - +
+ + Download Page + +
); }