Folder-Structure

Note:-

Please refer Faq's page in documentation itself for queries like customization like color ,rtl ,dark style..etc.

Folder Structure
assets/
						├── colors/
						|   |-- color1.css
						|   |-- color1.css.map
						|   |-- color1.scss
						├── css/
						|   |-- animated.css
						|   |-- bootstrap-main
						|   |-- bootstrap-main.css.map
						|   |-- icons.css
						|   |-- plugin.css.map
						|   |-- plugins.css
						|   |-- style.css
						|   |-- style.css.map
						├── iconfonts/
						├── images/
						├── plugins/
						├── scss/
						`-- switcher/
Folders Description
  • Sash Javascript - React Admin Panel Template / : Root template folder contain all react, jsx, css, scss, images and other files.
  • assets/ : Folder contain all the Admin Template assets which has css, jsx, scss, and images.
    • colors/: Folder contain assets which has colors for all versions.
      • color1/ : color1 file contains main color theme colors css.
    • css/: Folder contain assets which has complete styles.
      • dark-style : Dark theme css for the template.
      • icons : icons.css has all template icons link are importated.
      • skin-modes : skins.css has external styles for template.
      • style : Main style sheet for template which includes plugins.
      • transparent-style : Transparent theme css for the template.
    • images/ : it contains all the template images.
    • scss/ : Folder contain all pages scss files and all plugins scss files.
    • swicther/ : Folder contain switcher assets.
  • gulpfile.js : this file contains the functionality of scss to css convertion.
How to remove SCSS Format.

Note: If you want to use only CSS format then you should follow below process.

Step-1: Remove complete scss folder. Root path: (assets/scss)

Step-2: Remove .scss and .css.map extension related files in css folder. Root path: (assets/css/*.scss) and (assets/css/*.css.map)

Step-3: Remove "gulpfile.js", "package-lock.json" files.