Web:Files:EditingWrapperComponent: fix dark theme for tile view

This commit is contained in:
TimofeyBoyko 2022-06-16 16:41:33 +03:00
parent 3e133836c6
commit 7b2fe1790c

View File

@ -116,7 +116,8 @@ const EditingWrapper = styled.div`
props.viewAs === "tile" &&
!props.isUpdatingRowItem &&
css`
background: #fff;
background: ${(props) =>
props.theme.filesEditingWrapper.tile.itemBackground};
border: ${(props) =>
`1px solid ${props.theme.filesEditingWrapper.tile.itemBorder}`};
@ -136,7 +137,8 @@ const EditingWrapper = styled.div`
props.viewAs === "tile" &&
css`
margin-left: 0px;
background: #fff;
background: ${(props) =>
props.theme.filesEditingWrapper.tile.itemBackground};
border: ${(props) =>
`1px solid ${props.theme.filesEditingWrapper.tile.itemBorder}`};