mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-04 22:40:29 +03:00
fix event time appears on left in hidden bubles
This commit is contained in:
parent
f11911d64c
commit
a0087964a7
1 changed files with 16 additions and 12 deletions
|
|
@ -40,19 +40,23 @@ export const BubbleLayout = as<'div', BubbleLayoutProps>(
|
||||||
</Box>
|
</Box>
|
||||||
<Box grow="Yes" direction="Column">
|
<Box grow="Yes" direction="Column">
|
||||||
{header}
|
{header}
|
||||||
<Box>
|
{hideBubble ? (
|
||||||
<Box
|
children
|
||||||
className={
|
) : (
|
||||||
hideBubble
|
<Box>
|
||||||
? undefined
|
<Box
|
||||||
: classNames(css.BubbleContent, before ? css.BubbleContentArrowLeft : undefined)
|
className={
|
||||||
}
|
hideBubble
|
||||||
direction="Column"
|
? undefined
|
||||||
>
|
: classNames(css.BubbleContent, before ? css.BubbleContentArrowLeft : undefined)
|
||||||
{!hideBubble && before ? <BubbleLeftArrow variant="SurfaceVariant" /> : null}
|
}
|
||||||
{children}
|
direction="Column"
|
||||||
|
>
|
||||||
|
{before ? <BubbleLeftArrow variant="SurfaceVariant" /> : null}
|
||||||
|
{children}
|
||||||
|
</Box>
|
||||||
</Box>
|
</Box>
|
||||||
</Box>
|
)}
|
||||||
</Box>
|
</Box>
|
||||||
</Box>
|
</Box>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue