mdl-stepper icon indicating copy to clipboard operation
mdl-stepper copied to clipboard

Dynamic content height of the horizontal stepper

Open stalmok opened this issue 8 years ago • 2 comments

Current implementation limits content height to min-height: 576px;. How can I make mdl-step__content stretch to a full height?

stalmok avatar Dec 28 '16 12:12 stalmok

In my opinion this can be done with some extra CSS. Add a custom style:

.mdl-step { height:100%; }
.mdl-step__content { overflow: inherit; }

vanderree avatar May 03 '17 18:05 vanderree

Add a custom style: .mdl-step__content, .mdl-step{ height: auto; }

lidrissi avatar Jan 27 '19 11:01 lidrissi