Skip to content

Commit f90735f

Browse files
authored
fix(angular): variables gets loaded after global (#1834)
1 parent 3fe058e commit f90735f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

angular-standalone/base/angular.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"output": "assets"
3232
}
3333
],
34-
"styles": ["src/theme/variables.scss", "src/global.scss"],
34+
"styles": ["src/global.scss", "src/theme/variables.scss"],
3535
"scripts": []
3636
},
3737
"configurations": {
@@ -106,7 +106,7 @@
106106
"output": "assets"
107107
}
108108
],
109-
"styles": ["src/theme/variables.scss", "src/global.scss"],
109+
"styles": ["src/global.scss", "src/theme/variables.scss"],
110110
"scripts": []
111111
},
112112
"configurations": {

angular/base/angular.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"output": "./svg"
3232
}
3333
],
34-
"styles": ["src/theme/variables.scss", "src/global.scss"],
34+
"styles": ["src/global.scss", "src/theme/variables.scss"],
3535
"scripts": []
3636
},
3737
"configurations": {
@@ -111,7 +111,7 @@
111111
"output": "./svg"
112112
}
113113
],
114-
"styles": ["src/theme/variables.scss", "src/global.scss"],
114+
"styles": ["src/global.scss", "src/theme/variables.scss"],
115115
"scripts": []
116116
},
117117
"configurations": {

0 commit comments

Comments
 (0)