I've successfully installed Spark and I have access to all the OOTB features when logged in.
However I'm wondering about a few things :
If we consider the Team Settings view, how do I change the order of the blocks? I think changing the order of @include s on the blade template in spark/resources/views/settings/teams (or anything in the Spark folder) is not a good idea. How can I do that?
Currently, the spark application is using less files for CSS, they're from the bootstrap node module. What's the best way to style the spark application without going through the complete less compile cycle? Do I have to simply declare a CSS file to overload the predefined styles from the less files? I feel like this is a messy way of doing things, any thoughts?
You can change the view, but make sure you change the right ones.
Look for resources/views/vendor/sparkand NOTvendor/spark/resources/views (initially they are the same but any update will overwrite the latter ones - see documentation, it's mentioned there)
I am new to Spark and somehow does not find documentation as to how to change the default styling.
In the app.less file all the less files are included that come with Spark in the vendor/laravel/spark/resources/assets/less folder.
Does that mean, that I need to change the less files in this folder to change the default style?
Help would be really appreciated. Thanks in advance!