From 883af1e94de003597e8ad276f183684d52471b32 Mon Sep 17 00:00:00 2001 From: Abhishek Date: Fri, 29 Nov 2024 19:40:03 +0530 Subject: [PATCH] redcued logo --- src/theme/Layout/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/theme/Layout/index.tsx b/src/theme/Layout/index.tsx index 0d26b7d..cd9f801 100644 --- a/src/theme/Layout/index.tsx +++ b/src/theme/Layout/index.tsx @@ -74,8 +74,8 @@ function Header({ useEffect(() => { const updateDeviceType = () => { const width = window.innerWidth; - setIsMobile(width < 435); - setIsTablet(width >= 435 && width <= 768); + setIsMobile(width < 461); + setIsTablet(width >= 461 && width <= 768); }; updateDeviceType();