Web: Files: Table: fixed checkbox styles

This commit is contained in:
Nikita Gopienko 2024-04-03 12:47:16 +03:00
parent 2e4c6e6962
commit 177e70fee7

View File

@ -179,7 +179,7 @@ const StyledTableRow = styled(TableRow)`
.table-container_element-wrapper,
.table-container_row-loader {
min-width: ${(props) => (props.isRoom ? "40px" : "36px")};
min-width: 40px;
border-bottom: unset;
${(props) =>
props.theme.interfaceDirection === "rtl"
@ -194,7 +194,7 @@ const StyledTableRow = styled(TableRow)`
}
.table-container_element-container {
width: 32px;
width: 36px;
height: 32px;
display: flex;
@ -207,10 +207,10 @@ const StyledTableRow = styled(TableRow)`
${(props) =>
props.theme.interfaceDirection === "rtl"
? css`
margin-right: 4px;
margin-right: 8px;
`
: css`
margin-left: 4px;
margin-left: 8px;
`}
}
}