mirror of
https://github.com/aljazceru/rabbit.git
synced 2025-12-17 14:04:21 +01:00
fix: overflow reply view
This commit is contained in:
@@ -59,14 +59,14 @@ const Column: Component<ColumnProps> = (props) => {
|
|||||||
fallback={
|
fallback={
|
||||||
<>
|
<>
|
||||||
<div class="shrink-0 border-b">{props.header}</div>
|
<div class="shrink-0 border-b">{props.header}</div>
|
||||||
<div class="scrollbar flex flex-col overflow-y-scroll scroll-smooth">
|
<div class="scrollbar flex flex-col overflow-y-scroll scroll-smooth pb-16">
|
||||||
{props.children}
|
{props.children}
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
{(timeline) => (
|
{(timeline) => (
|
||||||
<div class="h-full w-full bg-white">
|
<>
|
||||||
<div class="flex shrink-0 items-center border-b bg-white px-2">
|
<div class="flex shrink-0 items-center border-b bg-white px-2">
|
||||||
<button
|
<button
|
||||||
class="flex w-full items-center gap-1"
|
class="flex w-full items-center gap-1"
|
||||||
@@ -78,10 +78,10 @@ const Column: Component<ColumnProps> = (props) => {
|
|||||||
<div>{i18n()('column.back')}</div>
|
<div>{i18n()('column.back')}</div>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<ul class="scrollbar flex h-full flex-col overflow-y-scroll scroll-smooth pb-8">
|
<div class="scrollbar flex max-h-full flex-col overflow-y-scroll scroll-smooth pb-16">
|
||||||
<TimelineContentDisplay timelineContent={timeline} />
|
<TimelineContentDisplay timelineContent={timeline} />
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
|
</>
|
||||||
)}
|
)}
|
||||||
</Show>
|
</Show>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user