diff --git a/packages/desktop/src/renderer/components/widgets/channels/ChannelInput/ChannelInput.tsx b/packages/desktop/src/renderer/components/widgets/channels/ChannelInput/ChannelInput.tsx index 5cc3229914..ede0e37959 100644 --- a/packages/desktop/src/renderer/components/widgets/channels/ChannelInput/ChannelInput.tsx +++ b/packages/desktop/src/renderer/components/widgets/channels/ChannelInput/ChannelInput.tsx @@ -169,9 +169,15 @@ const StyledChannelInput = styled(Grid)(({ theme }) => ({ padding: '5px', }, [`& .${classes.picker}`]: { - position: 'fixed', bottom: 60, right: 15, + left: 'auto', + maxWidth: '100%', + overflowY: 'auto', + boxSizing: 'border-box', + position: 'fixed', + width: 'min(350px, calc(100vw - 40px))', + maxHeight: 'min(450px, calc(100vh - 120px))', }, [`& .${classes.errorIcon}`]: { display: 'flex',