Answers for "scss file example"

0

sass file

Sass is a popular preprocessor scripting language that gets compiled into css. 
There are 2 file extensions:
1) .scss (newer syntax, commonly used)
2) .sass (older syntax with strict indentation)
Learn More at https://sass-lang.com/
Posted by: Guest on September-04-2021
0

scss file structure

> scss
    > base
		> theme									
          |- _richBlue.scss
          |- ...
        |- __base-dir.scss					#Import all base .scss files
        |- _bootstrap.scss        
        |- _variables.scss

    > components
        |- __components-dir.scss			#Import all components .scss files
        |- _header.scss
		|- _ie.scss
        |- _liquid-design.scss
        |- ...

    > global
        |- __global-dir.scss				#Import all global .scss files
        |- _busyloader.scss
        |- _scrollbar.scss
        |- _utilities.scss
		|- ...

    > icomoon								#Additional third party folders
		> fonts
		|- demo.html
		|- style.css

	
    styles.scss					#Import all dir files and third party folders
Posted by: Guest on July-09-2020
0

scss

sass --watch input.scss output.css
Posted by: Guest on August-11-2020

Browse Popular Code Answers by Language