Web:Client:CreateEditRoomDialog: fix truncate for tag dropdown

This commit is contained in:
TimofeyBoyko 2022-11-16 12:09:16 +03:00
parent 6e06af2d93
commit 31fb4b9043

View File

@ -45,6 +45,13 @@ const StyledDropDown = styled(DropDown)`
font-weight: 400;
font-size: 13px;
line-height: 20px;
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
&:hover {
background: ${(props) =>
props.theme.createEditRoomDialog.dropdown.item.hoverBackground};