From fdbf5e93aa8d99a8181abeb20dda532eda212908 Mon Sep 17 00:00:00 2001 From: d1rshan Date: Sat, 30 May 2026 20:26:44 +0530 Subject: [PATCH] fix: step circles overflow left edge --- apps/www/styles/globals.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/www/styles/globals.css b/apps/www/styles/globals.css index 11275825f..157f30430 100644 --- a/apps/www/styles/globals.css +++ b/apps/www/styles/globals.css @@ -513,11 +513,12 @@ .steps > h3 { counter-increment: steps; + @apply max-lg:relative max-lg:ps-8; } .steps > h3:before { @apply border-background bg-muted absolute inline-flex h-9 w-9 items-center justify-center rounded-full border-4 text-center -indent-px font-mono text-base font-medium; - @apply mt-[-4px] ml-[-50px]; + @apply mt-[-4px] ml-[-50px] max-lg:ms-0 max-lg:-start-2; content: counter(steps); }