Fixes overflow + zindex of cal icon (#9707)
parent
e9cbe5d353
commit
7413ba6aa0
|
@ -115,7 +115,11 @@ const BookerComponent = ({
|
|||
|
||||
return (
|
||||
<>
|
||||
<div className="text-default flex min-h-full w-full flex-col items-center overflow-clip">
|
||||
<div
|
||||
className={classNames(
|
||||
"text-default flex min-h-full w-full flex-col items-center",
|
||||
layout === BookerLayouts.MONTH_VIEW ? "overflow-visible" : "overflow-clip"
|
||||
)}>
|
||||
<div
|
||||
ref={animationScope}
|
||||
className={classNames(
|
||||
|
@ -218,7 +222,7 @@ const BookerComponent = ({
|
|||
<m.span
|
||||
key="logo"
|
||||
className={classNames(
|
||||
"mt-auto mb-6 pt-6 [&_img]:h-[15px]",
|
||||
"relative -z-50 mt-auto mb-6 pt-6 [&_img]:h-[15px]",
|
||||
layout === BookerLayouts.MONTH_VIEW ? "block" : "hidden"
|
||||
)}>
|
||||
{!hideBranding ? <PoweredBy logoOnly /> : null}
|
||||
|
|
Loading…
Reference in New Issue