Skip to content

Commit

Permalink
Merge pull request aadeshkulkarni#253 from pranay911/feature/transpar…
Browse files Browse the repository at this point in the history
…ent-bg-bookmark-container

Make background transparent for bookmark container
  • Loading branch information
aadeshkulkarni authored Jul 15, 2024
2 parents dc2cf12 + 2c7d99d commit f8a8163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/BookmarkTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const BookmarkTab = ({ bookmarks }: BookmarkTabProps) => {
return (
<div className="p-4 md:p-10 ">
<h1 className="text-2xl font-bold mb-2">Bookmarks</h1>
<div className="flex flex-col justify-center items-center bg-main">
<div className="flex flex-col justify-center items-center bg-transparent">
{bookmarks.length > 0 &&
bookmarks.map((bookmark) => (
<BlogCard
Expand Down

0 comments on commit f8a8163

Please sign in to comment.