Skip to content

Commit

Permalink
[ui] Change the large bookmarks grid to have 3 cols instead of 4 and fix
Browse files Browse the repository at this point in the history
hover coloring
  • Loading branch information
MohamedBassem committed Feb 9, 2024
1 parent 7400914 commit d184f47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function BookmarksGrid({
bookmarks: ZBookmark[];
}) {
return (
<div className="container grid grid-cols-1 gap-4 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4">
<div className="container grid grid-cols-1 gap-4 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-3">
{bookmarks.map((b) => renderBookmark(b))}
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function LinkCard({ bookmark }: { bookmark: ZBookmark }) {
{bookmark.tags.map((t) => (
<Badge
variant="default"
className="bg-gray-300 text-gray-500"
className="bg-gray-300 text-gray-500 hover:text-white"
key={t.id}
>
#{t.name}
Expand Down

0 comments on commit d184f47

Please sign in to comment.