From e6de589fa2d76cc2d444fe388bb64292cc7adcb3 Mon Sep 17 00:00:00 2001 From: Amrit Subramanian Date: Sat, 25 Oct 2025 12:27:52 -0400 Subject: [PATCH] Fix settings modal button sizing Remove full-width styling from primary buttons to make them appropriately sized based on content rather than stretching to fill the container. --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index dc5c146..e29c12e 100644 --- a/styles.css +++ b/styles.css @@ -155,7 +155,7 @@ /* Button */ .btn-primary { - @apply w-full bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded text-sm font-medium transition; + @apply bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded text-sm font-medium transition; } /* Session Container */