Since I just wanted to add button colors on top of what Ionic already have - this is what I did:
$ ionic setup sass
# in the directory "scss" that was created I added a file "app.scss" and converted to CSS:
$ sass --watch scss/app.scss:www/css/style.css
And then just added “style.css” to the index.html.
Is this also an acceptable way ? or I missed the point here
Thanks for the help !
Eventually this is what I changed:
vi gulpfile.js
Changed this:
gulp.src('./scss/ionic.app.scss')
To:
gulp.src('./scss/*.scss')
Then starting ionic:
$ gulp sass # not sure about this one, but what the hell ... nothing worked before that ..
$ ionic serve
Running serve task...
Running dev server at http://0.0.0.0:8100
Running live reload server at http://0.0.0.0:35729
Changed www/css/app.css
Changed www/css/ionic.app.css
Changed www/css/app.min.css
Changed www/css/ionic.app.min.css