From fb01be6080db3e3863600f5693699d22c4e7d0b0 Mon Sep 17 00:00:00 2001 From: Mohammed Mehdi <96487647+catosaurusrex2003@users.noreply.github.com> Date: Wed, 23 Oct 2024 15:07:32 +0530 Subject: [PATCH] fix: breakpoint changed from 1280 to 1536 (#1091) Co-authored-by: Cody's Dad <40604284+AceTheCreator@users.noreply.github.com> --- library/src/containers/AsyncApi/Layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/src/containers/AsyncApi/Layout.tsx b/library/src/containers/AsyncApi/Layout.tsx index 5bf6bac38..3a6a6702f 100644 --- a/library/src/containers/AsyncApi/Layout.tsx +++ b/library/src/containers/AsyncApi/Layout.tsx @@ -35,7 +35,7 @@ const AsyncApiLayout: React.FunctionComponent = ({ } const possibleClassName = - width <= 1280 ? 'container:xl' : 'container:base'; + width <= 1536 ? 'container:xl' : 'container:base'; if (possibleClassName !== observerClassName) { setObserverClassName(possibleClassName); }