在 Spartacus 中覆盖样式的一种方法是在 src/styles.scss 中定义它们。 但是我发现在 Spartacus 3.4 中,我必须添加 !important 指令来覆盖样式。 有没有更好的方法来做到这一点,或者 !important 是覆盖样式的唯一方法?
:root {
--cx-color-primary: #A7FFF6 !important;
--cx-color-secondary: #8AA39B !important;
--cx-color-text: #5C6F68 !important;
--cx-color-background: #95D9C3 !important;
--cx-color-dark: #A4F9C8 !important;
}
答案:wrap them in a body selector