I'm failing to overwrite the css
for <md-progress-linear>
.
They have the following code to set the height
of the progress bar in their sass
file:
$progress-linear-bar-height: 5px !default;
md-progress-linear {
height: $progress-linear-bar-height;
}
Even when I change 5px
to 1px
it still doesn't change. Leaving out the height, doesn't change anything either.
Even when I put it in my own sass
file, it doesn't overwrite it:
md-progress-linear {
height: 2px !important;
}
Am I overlooking something here?
$progress-linear-bar-height: 1px !default;
md-progress-linear {
display: block;
position: relative;
width: 100%;
height: $progress-linear-bar-height;
padding-top: 0 !important;
margin-bottom: 0 !important;
}
<md-progress-linear md-mode="indeterminate" ng-if="showLoader"></md-progress-linear>
<md-progress-linear>
this tag's primitive css on basis of what you want at place of making a work around. – Strategist