Web:Files:Components: add theme support for background color sharing panel

This commit is contained in:
Timofey Boyko 2022-04-26 10:54:35 +03:00
parent e8fb7d8ecc
commit 591cecb9ac

View File

@ -15,7 +15,7 @@ const StyledContainer = styled.div`
right: 0;
bottom: 0;
background: #333333;
background: ${(props) => props.theme.aside.backgroundColor};
z-index: 311;
@ -37,6 +37,8 @@ const StyledContainer = styled.div`
}
`;
StyledContainer.defaultProps = { theme: Base };
const StyledContent = styled.div`
width: 100%;
height: 100%;