Skip to content

Commit 21e3694

Browse files
authored
Allow to set $globant-colors in the config when customizing the paths (#379)
1 parent 341112b commit 21e3694

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

packages/mercury/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ npm i @genexus/mercury
8787
```scss
8888
$icons-path: "assets/custom/path/icons/";
8989
$font-face-path: "assets/custom/path/fonts/";
90+
$globant-colors: false;
9091
```
9192

9293
3. Run the following command to transpile the bundles with the new path for the assets:

packages/mercury/src/bundles/scss/base/base.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
$light-theme: true,
88
$dark-theme: true,
9-
$globant-colors: true,
9+
$globant-colors: $globant-colors,
1010

1111
$font-face: true,
1212
$font-face-path: $font-face-path,

packages/mercury/src/config.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33

44
$icons-path: "./assets/icons/";
55
$font-face-path: "./assets/fonts/";
6+
$globant-colors: false;

0 commit comments

Comments
 (0)