Currently, the core-toolbar
features an indent
class that shifts the title to the right by 60px
. However, material design guidelines suggest that the margin should actually be 80px
(oddly enough, the number 60
is not mentioned in the documentation).
I could easily modify this in the
bower_components/core-toolbar/core-toolbar.css
file. The issue arises when I need to transfer the project elsewhere - I would have to make the same adjustment after reinstalling via bower.
If I were to extend core-toolbar
, there would also be complications with other elements like core-header-panel
, which expect either a <core-toolbar>
or an element with the class "core-header"
. It's a bit frustrating, but manageable.
What would be the most effective approach to address this situation?