Skip to content

Commit

Permalink
fix(SearchTable): compatible with different antd version styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Barrior committed Jul 10, 2024
1 parent 175509f commit c397c1f
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ const dropdownCls = cij`
> * {
display: block;
width: 100%;
height: auto;
padding: 3px 6px;
height: auto !important;
padding: 3px 6px !important;
&:hover {
background: #f6f6f6 !important;
Expand Down Expand Up @@ -126,8 +126,12 @@ export function createActions({
</div>
)}
>
<Button type="link" size="small" style={{ gap: 2 }}>
更多 <DownOutlined />
<Button
type="link"
size="small"
style={{ gap: 2, display: 'inline-flex', alignItems: 'center' }}
>
更多 <DownOutlined style={{ margin: 0 }} />
</Button>
</Dropdown>
</>
Expand Down

0 comments on commit c397c1f

Please sign in to comment.