+
@@ -27,7 +27,7 @@ export default function Tab(props: Props) {
diff --git a/src/components/Settings.tsx b/src/components/Settings.tsx
index 1481c393..e02fdbe1 100644
--- a/src/components/Settings.tsx
+++ b/src/components/Settings.tsx
@@ -7,6 +7,7 @@ export default function Settings() {
}
onClick={() => useStore.setState({ settingsModal: true })}
/>
diff --git a/src/pages/_layout.tsx b/src/pages/_layout.tsx
index 61738724..8204cd37 100644
--- a/src/pages/_layout.tsx
+++ b/src/pages/_layout.tsx
@@ -50,11 +50,10 @@ export default function Layout({ children }: { children: React.ReactNode }) {
className={classNames(
'lg:min-h-[calc(100vh-65px)]',
'lg:mt-[65px]',
- 'min-h-screen gap-6 p-6 w-full relative',
- account && 'pr-18',
- focusComponent || isMobile
- ? 'flex justify-center'
- : 'grid grid-cols-[auto_min-content] place-items-start',
+ 'min-h-screen gap-6 px-4 py-6 w-full relative',
+ 'flex',
+ account && 'pr-24',
+ 'justify-center',
focusComponent && 'items-center',
isMobile && 'items-start',
)}
diff --git a/tailwind.config.js b/tailwind.config.js
index f15c6826..95f4b93e 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -187,6 +187,7 @@ module.exports = {
},
minWidth: {
15: '60px',
+ 16: '64px',
92.5: '370px',
},
padding: {
@@ -202,8 +203,9 @@ module.exports = {
'2xl': '1920px',
},
spacing: {
+ 24: '96px',
35: '140px',
- 82.5: '330px',
+ 80: '320px',
},
transitionDuration: {
3000: '3000ms',