如何使用sass覆盖父react组件中的子css类

TyF*_*ude 0 sass reactjs react-css-modules

尝试更改 Toast 容器的背景颜色,下面的代码假设可以实现此目的。我不知道我错过了什么,但它不起作用......

这是我尝试过的:

.toastError {
  margin-top: 15rem;// this works
  &.Toastify__toast--error {
    background: #bd362f !important;// this is is not...
  }
}
Run Code Online (Sandbox Code Playgroud)

反应组件:

import { ToastContainer, toast } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';
..
return (
<ToastContainer position="top-center"
          className={styles.toastError}
          autoClose={4000}
          hideProgressBar={false}
          newestOnTop={false}
          closeOnClick
          rtl={false}
          pauseOnFocusLoss
          draggable
          pauseOnHover
        />
Run Code Online (Sandbox Code Playgroud)

margin-top 影响组件但无法更改颜色,该元素在浏览器中如下所示: 在此输入图像描述

我需要做什么才能让它发挥作用?

Mar*_*tin 5

您将 cssLoader 与 css 模块一起使用,对吧?也许您必须标记.Toastify__toast--error为全局。在 cssLoader 中确定类名的范围

.toastError {
  margin-top: 15rem;

  :global(.Toastify__toast--error) {
    background: #bd362f !important;
  }
}
Run Code Online (Sandbox Code Playgroud)