diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-05-21 16:16:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-21 16:16:27 +0100 |
commit | f06a6024e6a3574847ac87942d162071496d864e (patch) | |
tree | a4cab4363514b22260cf92ea8099ae353c013ef8 /src | |
parent | 1ec4e0a867bf161121a6113eeaa8ad149219e344 (diff) | |
download | voidsky-f06a6024e6a3574847ac87942d162071496d864e.tar.zst |
fix to negative top of component so it moves with container growth (#4151)
Diffstat (limited to 'src')
-rw-r--r-- | src/components/dms/ChatEmptyPill.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/dms/ChatEmptyPill.tsx b/src/components/dms/ChatEmptyPill.tsx index a6c4906a6..4633832fc 100644 --- a/src/components/dms/ChatEmptyPill.tsx +++ b/src/components/dms/ChatEmptyPill.tsx @@ -72,7 +72,7 @@ export function ChatEmptyPill() { a.z_10, a.align_center, { - bottom: 70, + top: -50, }, ]}> <AnimatedPressable |