This might be a dumb question, but I am relatively new to using the CSS
/SCSS
modules with React
.
And I have valid reasons for asking, as modules allow scoping of CSS
(which is useful to prevent CSS
conflicts), but often when using external libraries (like Material-UI
or devextreme
) for built-in components, it is needed to override given CSS
.
For example (I'll use devextreme
for better illustration):
// ...other imports
import Textbox from 'devextreme-react/text-box';
const nameLabel = {'aria-label': 'Demo'}
function App () {
// imagine a straightforward example,
return (
<Textbox placeholder="Demo" inputAttr={nameLabel} />
)
}
Usually, it is possible to do like below if, for example, I want no padding:
.dx-texteditor.dx-editor-filled .dx-texteditor-input {
padding: 0;
}
There are surely other ways (like setting id
or inline-styling), but it would be great to know if it is possible. Thank you for your kind attention, and all the help.
let see how we can override built-in components css
composes
keyword is used to compose styles from another component's moduleApp.module.css
. here css class dx-texteditor-input from devextreme-react been overridden