Folder Structure/
├── src
| ├── app/
| | ├── authentication
| | ├── components
| | ├── material-module
| | ├── shared
| | ├── app.component.html
| | ├── app.component.scss
| | ├── app.component.ts
| | ├── app.config.ts
| | ├── app.routes.ts
| ├── assets/
├── |-- |-- css/
| |-- |-- ├── style.css
| |-- |-- ├── style.css.map
| |-- |-- ├── icons.css
| |-- |-- ├── icons.css.map
├── |-- |-- icon-fonts/
├── |-- |-- images/
├── |-- |-- scss/
| |-- |-- ├── bootstrap/
| |-- |-- ├── custom/
| |-- |-- ├── menu-styles/
| |-- |-- ├── pages/
| |-- |-- ├── util/
| |-- |-- ├── switcher.scss
| |-- |-- ├── bootstrap.scss
| |-- |-- ├── _variables.scss
| |-- |-- ├── icons.scss
| |-- |-- ├── styles.scss
├── |-- |-- video
├── |-- environments/
| | ├── environment.prod.ts
| | └── environment.ts
| ├── .htaccess
| ├── favicon.ico
| ├── index.html
| ├── main.ts
| ├── styles.css
├── .editorconfig
├── .gitignore
├── angular.json
├── package-lock.json
├── package.json
├── README.md
├── tsconfig.app.json
├── tsconfig.json
└── tsconfig.spec.json
Scifi – Premium Angular Admin Template /
: Root template folder contain all angular, Ts, css, scss, images
and other files.
assets/
: Folder contain all the Scifi Template assets which has css, scss, and images.
icon-fonts/
: Folder contain all types of icons which is used in this template.
images/
: Template images.
scss/
: Folder contain all pages scss files and all plugins scss files also included.
html
: All HTML Pages.esbuild.config.js
: esbuild.config js file.package.json
: package json file.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 "esbuild.config.js", "package.json", "package-lock.json" files.