fix: Forever increasing scroll height in embed in month_view on certain screen size. (#9820)
parent
c2e91b8378
commit
3556dda252
|
@ -169,7 +169,8 @@ const BookerComponent = ({
|
||||||
key="meta"
|
key="meta"
|
||||||
className={classNames(
|
className={classNames(
|
||||||
"relative z-10 flex [grid-area:meta]",
|
"relative z-10 flex [grid-area:meta]",
|
||||||
layout !== BookerLayouts.MONTH_VIEW && "sm:min-h-screen"
|
// Important: In Embed if we make min-height:100vh, it will cause the height to continuously keep on increasing
|
||||||
|
layout !== BookerLayouts.MONTH_VIEW && !isEmbed && "sm:min-h-screen"
|
||||||
)}>
|
)}>
|
||||||
<BookerSection
|
<BookerSection
|
||||||
area="meta"
|
area="meta"
|
||||||
|
|
Loading…
Reference in New Issue