From a92cdabdebec933acfb625b9cc48b2ebef7f2695 Mon Sep 17 00:00:00 2001 From: App Generator <51070104+app-generator@users.noreply.github.com> Date: Sun, 11 Aug 2024 09:08:26 +0300 Subject: [PATCH] Release v1.0.20 --- CHANGELOG.md | 11 +++++++++++ README.md | 27 +++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97a0c29..ad57ccd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## [1.0.20] 2024-08-11 +### Changes + +- Update DataTable Module +- Update Charts (added filters) + +## [1.0.19] 2024-08-04 +### Changes + +- Fix #42: Fontawesome link now returning 403 Forbidden + ## [1.0.18] 2024-04-09 ### Changes diff --git a/README.md b/README.md index 53217b4..ee0f4fe 100644 --- a/README.md +++ b/README.md @@ -199,6 +199,33 @@ $ celery -A apps.tasks worker -l info -B
+## Recompile SCSS + +> Tested with `NodeJS v14.0.0` + +The SCSS/CSS files used to style the Ui are saved in the `static/assets` directory. +In order to update the Ui colors (primary, secondary) this procedure needs to be followed. + +```bash +$ yarn # install modules +$ # # edit variables +$ vi static/assets/scss/soft-ui-dashboard/custom/_variables.scss +$ gulp # SCSS to CSS translation +``` + +The `_variables.scss` content defines the `primary` and `secondary` colors: + +```scss +$primary: #cb0c9f !default; // EDIT for customization +$secondary: #8392AB !default; // EDIT for customization +$info: #17c1e8 !default; // EDIT for customization +$success: #82d616 !default; // EDIT for customization +$warning: #fbcf33 !default; // EDIT for customization +$danger: #ea0606 !default; // EDIT for customization +``` + +
+ ## Codebase The project is coded using a simple and intuitive structure presented below: