mdl-stepper
mdl-stepper copied to clipboard
Dynamic content height of the horizontal stepper
Current implementation limits content height to min-height: 576px;
. How can I make mdl-step__content
stretch to a full height?
In my opinion this can be done with some extra CSS. Add a custom style:
.mdl-step { height:100%; }
.mdl-step__content { overflow: inherit; }
Add a custom style:
.mdl-step__content, .mdl-step{ height: auto; }