mirror of https://github.com/fantasticit/think.git
fix: fix search height
This commit is contained in:
parent
3826ec4a78
commit
0970b00cb1
|
@ -106,6 +106,9 @@ export const Search = () => {
|
||||||
style={{
|
style={{
|
||||||
maxWidth: '96vw',
|
maxWidth: '96vw',
|
||||||
}}
|
}}
|
||||||
|
bodyStyle={{
|
||||||
|
height: '68vh',
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
<div style={{ paddingBottom: 24 }}>
|
<div style={{ paddingBottom: 24 }}>
|
||||||
<div>
|
<div>
|
||||||
|
@ -122,7 +125,7 @@ export const Search = () => {
|
||||||
showClear
|
showClear
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div style={{ maxHeight: '70vh', overflow: 'auto' }}>
|
<div style={{ height: 'calc(68vh - 40px)', paddingBottom: 36, overflow: 'auto' }}>
|
||||||
<DataRender
|
<DataRender
|
||||||
loading={loading}
|
loading={loading}
|
||||||
loadingContent={
|
loadingContent={
|
||||||
|
|
Loading…
Reference in New Issue