Просмотр исходного кода

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

- Increases to 50vw so there's more space for activities
William Mak 1 год назад
Родитель
Сommit
7e319a7678
1 измененных файлов с 1 добавлено и 1 удалено
  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;