We're a place where coders share, stay up-to-date and grow their careers.
Since
:global(.a-class-inside-component) { padding: 1px; }
will be compiled to
.a-class-inside-component { padding: 1px; }
it will affect every components which uses class .a-class-inside-component globally.
.a-class-inside-component
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?
!important
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!
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!