Web: Client: Shared: fix navigation jumping

This commit is contained in:
Dmitry Sychugov 2024-04-04 20:29:24 +05:00
parent cff7e65509
commit af92aab690

View File

@ -169,6 +169,7 @@ const StyledContainer = styled.div<{
.room-title {
cursor: pointer;
min-height: 33px;
}
}
@ -206,8 +207,13 @@ const StyledContainer = styled.div<{
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
min-height: 33px;
gap: 8px;
@media ${mobile} {
min-height: auto;
}
${(props) =>
props.showNavigationButton &&
css`