feat: remove scrollbar

This commit is contained in:
Shusui MOYATANI
2023-07-10 01:55:13 +09:00
parent cae14d68f0
commit 605a87558e
3 changed files with 4 additions and 25 deletions

View File

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