使用样式化组件覆盖antd Button的样式无效吗?

时间:2019-04-11 08:56:37

标签: reactjs antd styled-components

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组件的覆盖样式不起作用?

1 个答案:

答案 0 :(得分:0)

我只是接受您的代码,它正确覆盖了antd的样式。可能还有其他原因