Zanex Admin manages all scss/css, images, json data files in
assets/ folder and
it also allows users to add their own scss files inside assests folder.
Plugins CSS can be found under the src/assets/plugins folder.
assets/
| ├── css
| ├── css-rtl
| ├── img
| ├── maps
| ├── plugins
| ├── scss
| | ├── bootstrap
| | ├── custom
| | ├── layouts
| | ├── lib
| | ├── template
| | ├── util
| | ├── _variables.scss
| | ├── style.scss
| ├── scss-rtl
| ├── .gitkeep
| ├── app_styles-rtl.scss
| └── app_styles.scss
Following is the details of what all scss folders.
| # | Folders/File | Details |
|---|---|---|
| 1 | bootstrap |
bootstrap/ folder contain Bootstrap 4.5.0 core scss
files, that are customized for the Zanex Dashboard.
|
| 2 | custom |
custom/ folder contain scss files used for custom-styles, images, list, navbar, ratings, tabs, scroller, toggle.., which are customized for the Zanex Dashboard.
|
| 3 | layouts |
layouts/ folder contain scss files used for footer, header, right-sidebar, profile, iconbar, main-content .., which are customized for the Zanex
Dashboard.
|
| 4 | lib |
lib/ folder contain scss files used for charts, spinner,date-picker.., which are customized for the Zanex Dashboard.
|
| 5 | template |
template/ folder contain scss files used in pages
components like for calendar, chat, contacts, crypto currencies, ecommerce, errors, mail.., which are customized for the Zanex Dashboard.
|
| 6 | util |
util/ folder contain scss files used in pages
components like for backgrounds, borders, heights, amrgins, position.., which are
customized for the Zanex Dashboard.
|
| 7 | _variables.scss |
_variables.scss file contain default color variables
which are customized for the Zanex Dashboard.
|
| 8 | _style.scss |
style.scss file is the main scss file that contain the
all scss import files which are customized for the Zanex
Dashboard.
|