Skip to content

Commit

Permalink
Release v1.0.20
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator committed Aug 11, 2024
1 parent a008a43 commit a92cdab
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,33 @@ $ celery -A apps.tasks worker -l info -B

<br />

## 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
```

<br />

## Codebase

The project is coded using a simple and intuitive structure presented below:
Expand Down

0 comments on commit a92cdab

Please sign in to comment.