style: increase button spacing between rows in compact theme (#5589)

This commit is contained in:
Katherine 2024-11-05 11:59:43 +08:00 committed by GitHub
parent 2bc571eb14
commit 567524dd5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -105,7 +105,7 @@ const useTableColumns = (props: { showDel?: any; isSubTable?: boolean }, paginat
return css`
.nb-action-link {
margin: -${token.paddingContentVerticalLG}px -${token.marginSM}px;
padding: ${token.paddingContentVerticalLG}px ${token.margin}px;
padding: ${token.paddingContentVerticalLG}px ${token.paddingSM + 4}px;
}
`;
}, [token.paddingContentVerticalLG, token.marginSM]);