我正在尝试设置来自ant.design的两个不同Dropdown
组件的样式。
对于一个Dropdown
组件,我通常会创建一个css
文件,找到特定的className
,使用css
编辑该组件,然后导入css
文件。但是,每当我执行此操作时,即使我没有将Dropdown
文件导入特定文件,我在整个webapp中使用的所有css
组件都会使用相同的css
文件进行修改。
在这种情况下,我想以不同的方式设置两个Dropdown
组件的样式。我怎么能这样做?
感谢任何帮助;提前谢谢:)
答案 0 :(得分:-1)
i usually just use styled-components and then wrap the component. I use react front end tho.
import styled from 'styled-components';
<LoginForm onSubmit={this.handleSubmit}>
</LoginForm>
const LoginForm = styled(Form)`
max-width: 300px;
align-self: start;
justify-self: center;
`;