diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-12-23 15:58:54 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-23 15:58:54 +0000 |
commit | 5020e4233a5a50be8fe7b8f360737da4d30ab74a (patch) | |
tree | f1807fe798140f62cd7a2d62d727412e1a559536 /src/alf | |
parent | 190c7d6ed870cb5be0383cf6c3bf8e1dde9379a0 (diff) | |
download | voidsky-5020e4233a5a50be8fe7b8f360737da4d30ab74a.tar.zst |
make horizontal scrollview touch edges (#7256)
Diffstat (limited to 'src/alf')
-rw-r--r-- | src/alf/atoms.ts | 3 |
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), }, |