Fix Bug 68367 - Links. The clickable area for the icon has been increased

This commit is contained in:
Nikita Gopienko 2024-06-05 13:20:49 +03:00
parent 9cd1e2e371
commit f12abb952c

View File

@ -438,24 +438,17 @@ const StyledQuickButtonsContainer = styled.div`
}
.badge {
${(props) =>
props.theme.interfaceDirection === "rtl"
? css`
margin-left: 14px;
`
: css`
margin-right: 14px;
`}
padding: 12px 7px;
}
.badge:last-child {
${(props) =>
props.theme.interfaceDirection === "rtl"
? css`
margin-left: 10px;
margin-left: 3px;
`
: css`
margin-right: 10px;
margin-right: 3px;
`}
}