File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
static/app/components/events/interfaces/frame Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 11import { Fragment , useMemo , useState } from 'react' ;
2- import { css } from '@emotion/react' ;
2+ import { css , useTheme } from '@emotion/react' ;
33import styled from '@emotion/styled' ;
44import classNames from 'classnames' ;
55
@@ -108,6 +108,7 @@ function DeprecatedLine({
108108 registersMeta,
109109 components,
110110} : Props ) {
111+ const theme = useTheme ( ) ;
111112 const organization = useOrganization ( ) ;
112113 const [ isHovering , setIsHovering ] = useState ( false ) ;
113114 const [ isExpanded , setIsExpanded ] = useState ( initialExpanded ?? false ) ;
@@ -322,7 +323,9 @@ function DeprecatedLine({
322323 < IconChevron direction = { isExpanded ? 'up' : 'down' } size = "sm" />
323324 </ ToggleContextButton >
324325 ) : (
325- < div style = { { width : 20 , height : 20 } } />
326+ < div
327+ style = { theme . isChonk ? { width : 26 , height : 20 } : { width : 20 , height : 20 } }
328+ />
326329 ) }
327330 </ DefaultLineTagWrapper >
328331 </ DefaultLine >
You can’t perform that action at this time.
0 commit comments