diff options
author | Hailey <me@haileyok.com> | 2024-03-01 15:47:59 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-01 15:47:59 -0800 |
commit | 82655f2ee3c208c2a0ab148dba1bccf884213375 (patch) | |
tree | 06b15e6c16a1c5823f894af5839472dff672166c /src/alf | |
parent | e11bd4385d1f39becdc18462f400e89bcc5cd75e (diff) | |
download | voidsky-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')
-rw-r--r-- | src/alf/index.tsx | 2 |
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( |