This commit is contained in:
Shusui MOYATANI
2023-05-26 23:14:15 +09:00
parent 7a9632bc48
commit 177b96df32
21 changed files with 366 additions and 90 deletions

View File

@@ -57,7 +57,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>
</>
}
>
@@ -74,7 +76,7 @@ const Column: Component<ColumnProps> = (props) => {
<div></div>
</button>
</div>
<ul class="flex h-full flex-col overflow-y-scroll scroll-smooth">
<ul class="scrollbar flex h-full flex-col overflow-y-scroll scroll-smooth">
<TimelineContentDisplay timelineContent={timeline} />
</ul>
</div>