使用样式化组件,有没有办法 select a className
Using Styled Components, is there a way to select a className
我在 React 项目中使用 StyledComponents,我打算覆盖 Airbnb 的 react-dates 库中的样式。他们正在使用带有 类 的 CSS 文件,但我想通过 StyledComponents 使用包装器组件覆盖他们的 CSS (以保持我的项目与不使用 CSS 文件一致) .
这可能吗?我没有在上面找到任何东西。
尝试尽可能具体,如有必要,添加 !important
标志。
例如:
#TheID .theClassName .otherDIV .someDIV .divDIV .divitisDIV {
color: purple!important;
}
我在 React 项目中使用 StyledComponents,我打算覆盖 Airbnb 的 react-dates 库中的样式。他们正在使用带有 类 的 CSS 文件,但我想通过 StyledComponents 使用包装器组件覆盖他们的 CSS (以保持我的项目与不使用 CSS 文件一致) .
这可能吗?我没有在上面找到任何东西。
尝试尽可能具体,如有必要,添加 !important
标志。
例如:
#TheID .theClassName .otherDIV .someDIV .divDIV .divitisDIV {
color: purple!important;
}