about summary refs log tree commit diff
path: root/src/alf/index.tsx
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-03-01 15:47:59 -0800
committerGitHub <noreply@github.com>2024-03-01 15:47:59 -0800
commit82655f2ee3c208c2a0ab148dba1bccf884213375 (patch)
tree06b15e6c16a1c5823f894af5839472dff672166c /src/alf/index.tsx
parente11bd4385d1f39becdc18462f400e89bcc5cd75e (diff)
downloadvoidsky-82655f2ee3c208c2a0ab148dba1bccf884213375.tar.zst
Few list tweaks on web (#3062)
* share button only on native

* update gttablet to be 1300px

* improve web layout

* change re-layout to mobile breakpoint

* adjustable not found reason

* don't show the borders on mobile web

* slight padding for the spinner
Diffstat (limited to 'src/alf/index.tsx')
-rw-r--r--src/alf/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alf/index.tsx b/src/alf/index.tsx
index 06d6ebf01..27738e91d 100644
--- a/src/alf/index.tsx
+++ b/src/alf/index.tsx
@@ -17,7 +17,7 @@ const breakpoints: {
   [key: string]: number
 } = {
   gtMobile: 800,
-  gtTablet: 1200,
+  gtTablet: 1300,
 }
 function getActiveBreakpoints({width}: {width: number}) {
   const active: (keyof typeof breakpoints)[] = Object.keys(breakpoints).filter(