Revert "feat: remove scrollbar"

This reverts commit 605a87558e.
This commit is contained in:
Shusui MOYATANI
2023-07-10 20:04:34 +09:00
parent 4ee3ba9613
commit ba8b08dc90
3 changed files with 25 additions and 4 deletions

View File

@@ -59,7 +59,9 @@ const Column: Component<ColumnProps> = (props) => {
fallback={
<>
<div class="shrink-0 border-b">{props.header}</div>
<div class="flex flex-col overflow-y-scroll scroll-smooth">{props.children}</div>
<div class="scrollbar flex flex-col overflow-y-scroll scroll-smooth">
{props.children}
</div>
</>
}
>
@@ -76,7 +78,7 @@ const Column: Component<ColumnProps> = (props) => {
<div>{i18n()('column.back')}</div>
</button>
</div>
<ul class="flex h-full flex-col overflow-y-scroll scroll-smooth pb-8">
<ul class="scrollbar flex h-full flex-col overflow-y-scroll scroll-smooth pb-8">
<TimelineContentDisplay timelineContent={timeline} />
</ul>
</div>