muse-ui icon indicating copy to clipboard operation
muse-ui copied to clipboard

[Bug] Bottom Sheet no set max-height

Open hom opened this issue 7 years ago • 3 comments

BUG for bottom-sheet

if more content in component bottom-sheet , it will overflow:

image

we can add these attributes in the element.

.mu-bottom-sheet: {
  max-height: 70%; //limit the max-height
  overflow: scroll; //allow the scroll bar 
}

The view will be like this:

image

Bingo!!

hom avatar Oct 24 '18 09:10 hom