Skip to content

Commit

Permalink
feat: remove min-width limit in focus mode
Browse files Browse the repository at this point in the history
Refs: SHELL-247 (#512)
  • Loading branch information
beawar authored Sep 26, 2024
1 parent 37c059d commit a11dc1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shell/shell-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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%;
`;

Expand Down

0 comments on commit a11dc1d

Please sign in to comment.