Skip to content

Commit

Permalink
fix(angular): variables gets loaded after global (#1834)
Browse files Browse the repository at this point in the history
  • Loading branch information
liamdebeasi committed Mar 1, 2024
1 parent 3fe058e commit f90735f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions angular-standalone/base/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 31,7 @@
"output": "assets"
}
],
"styles": ["src/theme/variables.scss", "src/global.scss"],
"styles": ["src/global.scss", "src/theme/variables.scss"],
"scripts": []
},
"configurations": {
Expand Down Expand Up @@ -106,7 106,7 @@
"output": "assets"
}
],
"styles": ["src/theme/variables.scss", "src/global.scss"],
"styles": ["src/global.scss", "src/theme/variables.scss"],
"scripts": []
},
"configurations": {
Expand Down
4 changes: 2 additions & 2 deletions angular/base/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 31,7 @@
"output": "./svg"
}
],
"styles": ["src/theme/variables.scss", "src/global.scss"],
"styles": ["src/global.scss", "src/theme/variables.scss"],
"scripts": []
},
"configurations": {
Expand Down Expand Up @@ -111,7 111,7 @@
"output": "./svg"
}
],
"styles": ["src/theme/variables.scss", "src/global.scss"],
"styles": ["src/global.scss", "src/theme/variables.scss"],
"scripts": []
},
"configurations": {
Expand Down

0 comments on commit f90735f

Please sign in to comment.