Allow SCSS variables to be overridden (#2987)
* Allow SCSS variables to be overridden with `app/javascript/pack/variables*.scss` * Allow these SCSS variables to be overriden: * `$base-shadow-color` * `$base-overlay-background` * `$base-border-color` * `$simple-background-color` * `$primary-text-color` * `$valid-value-color * `$error-value-color`
This commit is contained in:
parent
02412429ab
commit
b535966ab5
2 changed files with 13 additions and 7 deletions
|
@ -1,3 +1,7 @@
|
|||
// allow override variables here
|
||||
require.context('../../assets/stylesheets/', false, /variables.*\.scss$/);
|
||||
|
||||
// import default stylesheet with variables
|
||||
require('font-awesome/css/font-awesome.css');
|
||||
require('../styles/application.scss');
|
||||
|
||||
|
@ -19,6 +23,8 @@ function main() {
|
|||
Rails.start();
|
||||
|
||||
require.context('../images/', true);
|
||||
|
||||
// import customization styles
|
||||
require.context('../../assets/stylesheets/', false, /custom.*\.scss$/);
|
||||
|
||||
onDomContentLoaded(() => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue