Browse Source

Fix missing column gap for bookmarks

https://github.com/benphelps/homepage/issues/235#issuecomment-1292261927
Michael Shamoon 2 years ago
parent
commit
c14ae6ee72
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/pages/index.jsx

+ 1 - 1
src/pages/index.jsx

@@ -272,7 +272,7 @@ function Home({ initialSettings }) {
         )}
 
         {bookmarks && (
-          <div className="grow flex flex-wrap pt-0 p-4 sm:p-8">
+          <div className="grow flex flex-wrap pt-0 p-4 sm:p-8 gap-x-2">
             {bookmarks.map((group) => (
               <BookmarksGroup key={group.name} group={group} />
             ))}