-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Description
Up until recent release, the SCSS files were shipped with the npm bundle.
We have are requirement for some heavy CSS restyling of the components to fit the company guideline. With some components it was not possible via class override, on those it was possible it looked terrible and unmaintainable, lots of css hacks.
We built a webpack loader that uses AST to visit all decorator styles properties and replace them with a recompiled SCSS. The SCSS got compiled after we changed some $variables and our SCSS file @import
ed the original material SCSS file of the component restyled.
It worked fine, but now we don't have access to the SCSS files through the npm package, we have to get the whole git as a submodule which is something I would rather not do.
Will you guys consider adding the SCSS files to the bundle?