Lately I've been working on styling my application a lot, and I had someone tell me that using a live preview would be awesome. However, I can't seem to find anything that would work in my particular work environment.
I currently work in Laravel, I have the application running on a Ubuntu PC on my local network. I devide my styling into 2 files, one for element styling and one for flexbox layout, when I save one of the files gulp/elixir triggers and compiles it from SCSS to CSS and then grabs normalize and puts it together into one large file.
Most programs like live reload and such work with checking if a file is saved locally, I save it in Sublime text 3 and it uploads it using the FTP extension, then gulp triggers and does all the magic.
I can't seem to wrap my mind around a solution, any idea's on how to get some kind of live CSS preview working?
BrowserSync is perfect for this, added folders for both my views and style changes (targeted the folder where gulp puts my finished stylesheet) and it worked like a charm. Easy to set up and no worries.