import styled from 'styled-components';
import { Button } from 'antd';
const StyledButton = styled(Button)`
height: 100%;
border-width: 0px;
&:hover {
color: palevioletred;
border-color: red;
}
`;
export default StyledButton;
antd Button组件的覆盖样式不起作用?
答案 0 :(得分:0)
我只是接受您的代码,它正确覆盖了antd的样式。可能还有其他原因