File tree Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 3131 margin-block-start : 0 ;
3232 height : 100% ;
3333}
34+ # root {
35+ display : flex;
36+ flex-direction : column;
37+ }
3438
3539a {
3640 color : var (--vscode-textLink-foreground );
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ interface SearchResultListProps {
88
99const SearchResultList = ( { matches } : SearchResultListProps ) => {
1010 return (
11- < div >
11+ < div style = { { flexGrow : '1' , overflowY : 'scroll' } } >
1212 { matches . map ( ( [ filePath , match ] ) => {
1313 return < TreeItem filePath = { filePath } matches = { match } key = { filePath } />
1414 } ) }
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const buttonStyle: CSSProperties = {
1717 flex : '0 0 auto' ,
1818 position : 'absolute' ,
1919 top : '0' ,
20- right : '0 '
20+ right : '-2px '
2121}
2222const optionsStyle : CSSProperties = {
2323 minHeight : '16px' ,
@@ -43,7 +43,7 @@ export default function SearchOptions({
4343 < VscEllipsis />
4444 </ button >
4545 { showOptions && (
46- < div style = { { paddingBottom : '4px ' } } >
46+ < div style = { { paddingBottom : '6px ' } } >
4747 < IncludeFile
4848 includeFile = { includeFile }
4949 setIncludeFile = { setIncludeFile }
Original file line number Diff line number Diff line change @@ -5,8 +5,7 @@ import * as stylex from '@stylexjs/stylex'
55
66const styles = stylex . create ( {
77 container : {
8- position : 'relative' ,
9- margin : '0 12px 0 2px'
8+ position : 'relative'
109 } ,
1110 replaceToggle : {
1211 width : 16 ,
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const SearchWidgetContainer = ({ onQueryChange }: Props) => {
1616 } = useSearchQuery ( onQueryChange )
1717
1818 return (
19- < div >
19+ < div style = { { margin : '0 12px 0 2px' } } >
2020 < SearchWidget
2121 inputValue = { inputValue }
2222 setInputValue = { setInputValue }
You can’t perform that action at this time.
0 commit comments