I'm trying to add my own class and to modify the padding the following code with my external style.css but every single time angular-material overwrites my code & I don't want to use style="padding: 0px!important" everytime !
<md-menu-bar ng-if="!phantomJS && !shared" style="padding: 0px"><md-menu>
Thanks in advance
My Angular Theme-ing option looks like this
$mdThemingProvider.theme('default')
.primaryPalette('blue')
.accentPalette('indigo')
.warnPalette('deep-orange')
.backgroundPalette('grey');
!important
as long as yourstyle.css
is last, you should be right – Brendan Green 20 hours ago