From a11dc1d31fcb7f775f90545933b59f9c882c2d97 Mon Sep 17 00:00:00 2001 From: Beatrice Guerra Date: Thu, 26 Sep 2024 10:59:09 +0200 Subject: [PATCH] feat: remove min-width limit in focus mode Refs: SHELL-247 (#512) --- src/shell/shell-view.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell/shell-view.tsx b/src/shell/shell-view.tsx index db3fb61f2..829d0d05b 100644 --- a/src/shell/shell-view.tsx +++ b/src/shell/shell-view.tsx @@ -29,7 +29,7 @@ const Background = styled.div` min-height: 100%; max-height: 100%; width: 100%; - min-width: 60rem; + min-width: ${IS_FOCUS_MODE ? '100%' : '60rem'}; max-width: 100%; `;