【发布时间】:2019-09-01 20:27:36
【问题描述】:
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 组件的覆盖样式不起作用?
【问题讨论】:
标签: reactjs antd styled-components