Client: InvitePanel: Fix not fullwidth rows in invite panel on mobile screen size

This commit is contained in:
Aleksandr Lushkin 2024-07-17 13:51:21 +02:00
parent d5dd886dad
commit 55657c9c70

View File

@ -118,12 +118,11 @@ const ScrollList = styled.div`
? "auto"
: props.offsetTop && `calc(100% - ${props.offsetTop}px)`};
${!isMobile() &&
css`
.row-item {
.row-item {
@media not ${mobile} {
width: 448px !important;
}
`}
}
`;
const StyledBlock = styled.div`