From 793a043c7bf4231f0d7f2d3c5bb1f0c64150c90d Mon Sep 17 00:00:00 2001 From: sammy-ette Date: Sun, 22 Jun 2025 19:37:12 -0400 Subject: [PATCH] fix: centering of featured dl text --- website/src/pages/index.gleam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/src/pages/index.gleam b/website/src/pages/index.gleam index 76d29ef6..29f86eea 100644 --- a/website/src/pages/index.gleam +++ b/website/src/pages/index.gleam @@ -156,11 +156,11 @@ pub fn page() -> element.Element(a) { "To find out all that Hilbish can do, you should just try it out! It's officially available on Linux, MacOS, Windows, and probably builds on anything Go is available on!", ), ]), - html.div([], [ + html.div([attribute.class("sm:w-1/2 text-center")], [ html.h2([attribute.class("text-3xl font-semibold")], [ element.text("Featured Downloads"), ]), - html.p([attribute.class("sm:w-1/2 justify-self-center")], [ + html.p([], [ element.text( "These are \"portable\" binary releases of Hilbish from GitHub. All the required files are in the archive. Put it somewhere, add the directory to your $PATH, and use Hilbish.", ),