chore: update cinny submodule to latest commit with mobile gesture enhancements and disable route animation on compact view

This commit is contained in:
2026-07-09 18:06:06 +10:00
parent 83b4cbbd8e
commit 72dbbe29b9
9 changed files with 429 additions and 497 deletions

View File

@@ -9,6 +9,19 @@ export const SwipeBackRoot = style({
overflow: 'hidden',
display: 'flex',
flexDirection: 'column',
});
export const SwipeBackContent = style({
position: 'relative',
zIndex: 1,
flex: 1,
minWidth: 0,
minHeight: 0,
display: 'flex',
flexDirection: 'column',
backgroundColor: color.Background.Container,
boxShadow: '0 0 24px rgba(0, 0, 0, 0.35)',
willChange: 'transform',
touchAction: 'pan-y',
});
@@ -33,26 +46,12 @@ export const SwipeBackChannelPeek = style({
backgroundColor: color.Background.Container,
});
export const SwipeBackContent = style({
position: 'relative',
zIndex: 1,
flex: 1,
minWidth: 0,
minHeight: 0,
display: 'flex',
flexDirection: 'column',
backgroundColor: color.Background.Container,
boxShadow: '0 0 24px rgba(0, 0, 0, 0.35)',
willChange: 'transform',
});
export const SwipeToReplyLayer = style({
position: 'relative',
flex: 1,
minHeight: 0,
display: 'flex',
flexDirection: 'column',
touchAction: 'pan-y',
});
export const SwipeToReplyIndicator = style({