use grid-cols instead of flex-basis for bookmarks

Fixes #507
This commit is contained in:
Michael Shamoon 2022-11-08 10:33:11 -08:00
parent 4a9a034626
commit 2bcfc36bc2
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ import List from "components/bookmarks/list";
export default function BookmarksGroup({ group }) {
return (
<div key={group.name} className="basis-full md:basis-1/2 lg:basis-1/3 xl:basis-1/4 flex-1">
<div key={group.name} className="flex-1">
<h2 className="text-theme-800 dark:text-theme-300 text-xl font-medium">{group.name}</h2>
<ErrorBoundary>
<List bookmarks={group.bookmarks} />