Client: Components: Fixed styles for history panel.

This commit is contained in:
Tatiana Lopaeva 2024-08-21 11:54:06 +03:00
parent 5c462bb588
commit 0c8ddea898

View File

@ -259,15 +259,16 @@ StyledContent.defaultProps = { theme: Base };
const StyledHeaderContent = styled.div` const StyledHeaderContent = styled.div`
display: flex; display: flex;
align-items: center; align-items: center;
padding: 0 16px;
${(props) => ${(props) =>
props.theme.interfaceDirection === "rtl" props.theme.interfaceDirection === "rtl"
? css` ? css`
margin-left: -16px; padding-right: 16px;
padding-left: 37px;
` `
: css` : css`
margin-right: -16px; padding-left: 16px;
padding-right: 37px;
`} `}
border-bottom: ${(props) => props.theme.filesPanels.sharing.borderBottom}; border-bottom: ${(props) => props.theme.filesPanels.sharing.borderBottom};