0
0
Fork 0

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:
Koala Yeung 2017-05-13 01:22:50 +08:00 committed by Eugen Rochko
parent 02412429ab
commit b535966ab5
2 changed files with 13 additions and 7 deletions

View file

@ -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(() => {