File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
static/app/components/events Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import {Breadcrumbs as NavigationBreadcrumbs} from 'sentry/components/breadcrumb
4
4
import { InputGroup } from 'sentry/components/core/input/inputGroup' ;
5
5
import { DrawerBody , DrawerHeader } from 'sentry/components/globalDrawer/components' ;
6
6
import { space } from 'sentry/styles/space' ;
7
+ import { withChonk } from 'sentry/utils/theme/withChonk' ;
7
8
import { MIN_NAV_HEIGHT } from 'sentry/views/issueDetails/streamline/eventTitle' ;
8
9
9
10
export const Header = styled ( 'h3' ) `
@@ -13,11 +14,14 @@ export const Header = styled('h3')`
13
14
margin: 0;
14
15
` ;
15
16
16
- export const SearchInput = styled ( InputGroup . Input ) `
17
- border: 0;
18
- box-shadow: unset;
19
- color: inherit;
20
- ` ;
17
+ export const SearchInput = withChonk (
18
+ styled ( InputGroup . Input ) `
19
+ border: 0;
20
+ box-shadow: unset;
21
+ color: inherit;
22
+ ` ,
23
+ InputGroup . Input
24
+ ) ;
21
25
22
26
export const NavigationCrumbs = styled ( NavigationBreadcrumbs ) `
23
27
margin: 0;
You can’t perform that action at this time.
0 commit comments