Browse Source

feat(starfish): make the sidepanel wider (#48023)

- Increases to 50vw so there's more space for activities
William Mak 1 year ago
parent
commit
7e319a7678
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/views/starfish/components/slideOverPanel.tsx

+ 1 - 1
static/app/views/starfish/components/slideOverPanel.tsx

@@ -2,7 +2,7 @@ import isPropValid from '@emotion/is-prop-valid';
 import styled from '@emotion/styled';
 import {motion} from 'framer-motion';
 
-const PANEL_WIDTH = '640px';
+const PANEL_WIDTH = '50vw';
 
 type SlideOverPanelProps = {
   children: React.ReactNode;