From 65d3b2113b6c73bcd9cf605aa1b04d8cdbc23f79 Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Tue, 3 Oct 2023 16:32:09 -0300 Subject: [PATCH] fix(applies.css): add max-w-full class to .api-modal-tabs to ensure it takes up the full width on smaller screens --- src/frontend/src/style/applies.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/style/applies.css b/src/frontend/src/style/applies.css index c02e8e0fa..08171752a 100644 --- a/src/frontend/src/style/applies.css +++ b/src/frontend/src/style/applies.css @@ -853,7 +853,7 @@ } .api-modal-tabs { - @apply flex h-full flex-col overflow-hidden rounded-md border bg-muted text-center sm:w-[75vw] md:w-[75vw] lg:w-[75vw] xl:w-[76vw] 2xl:w-full; + @apply flex h-full flex-col max-w-full overflow-hidden rounded-md border bg-muted text-center sm:w-[75vw] md:w-[75vw] lg:w-[75vw] xl:w-[76vw] 2xl:w-full; } .api-modal-tablist-div { @apply flex items-center justify-between px-2;