about summary refs log tree commit diff
path: root/src/alf
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2024-12-23 15:58:54 +0000
committerGitHub <noreply@github.com>2024-12-23 15:58:54 +0000
commit5020e4233a5a50be8fe7b8f360737da4d30ab74a (patch)
treef1807fe798140f62cd7a2d62d727412e1a559536 /src/alf
parent190c7d6ed870cb5be0383cf6c3bf8e1dde9379a0 (diff)
downloadvoidsky-5020e4233a5a50be8fe7b8f360737da4d30ab74a.tar.zst
make horizontal scrollview touch edges (#7256)
Diffstat (limited to 'src/alf')
-rw-r--r--src/alf/atoms.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/alf/atoms.ts b/src/alf/atoms.ts
index df2b29d8a..1485ca7fc 100644
--- a/src/alf/atoms.ts
+++ b/src/alf/atoms.ts
@@ -158,6 +158,9 @@ export const atoms = {
   flex_wrap: {
     flexWrap: 'wrap',
   },
+  flex_nowrap: {
+    flexWrap: 'nowrap',
+  },
   flex_0: {
     flex: web('0 0 auto') || (native(0) as number),
   },