1In the new angular v6, importing sass files is a little different from the previous version.
2
3I just needed to import like this (in a component stylesheet)
4
5@import "~src/sass/variables"; // note: without file extension
6
7Now everything works fine
8
9Thanks all for the help