dnafactory / module-scss
Provides an scss preprocessor to Magento 2
Installs: 2 075
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:magento2-module
Requires
- php: ^7.1|^8.1
- scssphp/scssphp: ^1.4.0
- wikimedia/less.php: ^3.0.0|1.8.2.1 as 1.8.2
README
Provides an Scss preprocessor (scssphp/scssphp) to Magento 2 as an Alternative Source Content Processor.
Supports Magento 2 Theme inheritance and Assets fallback system.
Frontend compilation is currently not tested and not fully implemented yet.
How to use
Put your base scss file in your preferred location as Magento 2 standards. Ex:
- app/design/frontend/MyCompany/theme/web/css/--->mystyle.scss
- app/code/MyCompany/MyModule/view/frontend/web/css/--->mystyle.scss
- app/design/frontend/MyCompany/theme/TheirCompany_TheirModule/web/css/--->mystyle.scss
Then add your source files references as you do with .less ones. Oh, and you can use Magento custom directives (like @magento_import) too. Ex:
@import 'source/_mixins'; @import 'source/functions.scss'; //@magento_import 'source/_extends.scss';
The @vars_import directive
As Magento 2 comes only with .less preprocessor, you may need to merge your new shiny scss project into the old fashioned .less theme. When it comes to needs, you can simply use the @vars_import directive on top of your main scss file to load and translate .less vars. Ex:
//@vars_import 'source/_variables.less'; @import 'source/_mixins'; @import 'source/functions.scss'; //@magento_import 'source/_extends.scss';
All less variables will be translated into scss readable ones, so you can then reference them in your scss subsequent assets.
Ex: @primary__color will be accessible as $primary__color
When you are coding in a module context you may need to import Magento 2 .less lib vars. Therefore, to avoid context issues, it may come in handy to use the @vars_import directive with the addition of the (lib) identifier. Ex:
//@vars_import (lib) 'source/lib/_lib.less'
Happy Coding