Skip to content

Commit

Permalink
Write theme variables before bootstrap and lexicon variables in theme…
Browse files Browse the repository at this point in the history
…'s _aui_variables.scss
  • Loading branch information
Robert-Frampton authored and Robert-Frampton committed Aug 8, 2016
1 parent 6ee810a commit 8ac98e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/js/lib/system/sass_util.js
Expand Up @@ -113,7 +113,7 @@ export function _render(config, cb) {
export function _writeThemeFile(variables, variablesString, themePath) {
let themeVariables = _getThemeVariables(variables, _getThemeVariablesFileAbsolutePath(themePath));

variablesString = variablesString + '\n' + _generateVariablesString(themeVariables);
variablesString = _generateVariablesString(themeVariables) + '\n' + variablesString;

fsp.writeFile(path.join(themePath, 'src/css/_aui_variables.scss'), variablesString);
}
Expand Down

0 comments on commit 8ac98e8

Please sign in to comment.