Introduction
Component libraries make our life easier.
But as developers, you would often find yourself in situations where 3rd party c...
For further actions, you may consider blocking this person and/or reporting abuse
😮 Wow. This is awesome~
Thank you, Jacob.
I've used Ant Design's autocomplete but haven't had idea how to
inject
custom properties (accessibility props) but your article provided how I can get started.Hello, thanks for your post.
About first case, if I use styles.modules.scss, then how can I override css?
If you tell me about this, I will appreciate it.
Thank you.
Hi
If you are using CSS modules, you can use :global to target a CSS class name in a component.
for e.g.
will be compiled to CSS similar to
Hope this helps.
Great. It works. Thank you for your kindly help.
Can you tell me .wrapper meaning?
For me, it works with
:global(.a-class-inside-component) {
padding: 1px;
}
Maybe .wrapper has other meaning?
Thank you.
And if using this method, I have to use !important to override component.
Can you tell me if any other way is not using !important.
Thank you.
Since
will be compiled to
it will affect every components which uses class
.a-class-inside-component
globally.If you want the CSS to be applied globally, this is alright.
If you want to scope the CSS to 1 component only, it's recommended to use a wrapper class.
Thank you very much.
Should I use
!important
in my custom modules.scss to override css?Is there any other way?
Generally, it's considered a bad practice to use important. Don't use it unless you absolutely have to.
To avoid using important => stackoverflow.com/a/27443631/5599288
I will consider your words.
Thank you for your kindly help.
Hope good posts in the future.
Regards!
Glad it helped :) I know Vue too. I feel like Vue components would be even more customizable. For example, in wrapper component, you could set child's state like stackoverflow.com/a/51675344/5599288
Patching sounds also nice a D straight forward. npmjs.com/package/patch-package