diff --git a/src/components/widgets/widget/container.jsx b/src/components/widgets/widget/container.jsx index 965a8aa61..cd503562d 100644 --- a/src/components/widgets/widget/container.jsx +++ b/src/components/widgets/widget/container.jsx @@ -16,7 +16,7 @@ export function getAllClasses(options, additionalClassNames = '') { } return classNames( - "flex flex-col justify-center first:ml-0 ml-2 mr-2", + "flex flex-col justify-center ml-2 mr-2", "mt-2 m:mb-0 rounded-md shadow-md shadow-theme-900/10 dark:shadow-theme-900/20 bg-theme-100/20 dark:bg-white/5 p-2 pl-3 pr-3", additionalClassNames ); diff --git a/src/pages/index.jsx b/src/pages/index.jsx index 722ef88ab..3a0a71367 100644 --- a/src/pages/index.jsx +++ b/src/pages/index.jsx @@ -161,10 +161,10 @@ function Index({ initialSettings, fallback }) { const headerStyles = { boxed: - "m-4 mb-0 sm:m-8 sm:mb-0 rounded-md shadow-md shadow-theme-900/10 dark:shadow-theme-900/20 bg-theme-100/20 dark:bg-white/5 p-3", - underlined: "m-4 mb-0 sm:m-8 sm:mb-1 border-b-2 pb-4 border-theme-800 dark:border-theme-200/50", - clean: "m-4 mb-0 sm:m-8 sm:mb-0", - boxedWidgets: "m-4 mb-0 sm:m-8 sm:mb-0 sm:mt-1", + "m-6 mb-0 sm:m-9 sm:mb-0 rounded-md shadow-md shadow-theme-900/10 dark:shadow-theme-900/20 bg-theme-100/20 dark:bg-white/5 p-3", + underlined: "m-6 mb-0 sm:m-9 sm:mb-1 border-b-2 pb-4 border-theme-800 dark:border-theme-200/50", + clean: "m-6 mb-0 sm:m-9 sm:mb-0", + boxedWidgets: "m-6 mb-0 sm:m-9 sm:mb-0 sm:mt-1", }; function Home({ initialSettings }) { @@ -268,7 +268,7 @@ function Home({ initialSettings }) { const bookmarkGroups = bookmarks.filter(tabGroupFilter).filter(undefinedGroupFilter); return <> - {tabs.length > 0 &&