consistent background color in notes (#10097)
fixes #10086   --------- Co-authored-by: ehconitin <nitinkoche03@gmail.com>
This commit is contained in:
committed by
GitHub
parent
23d2e54439
commit
d2d3b21c90
@ -38,6 +38,7 @@ const StyledTabListContainer = styled.div<{ shouldDisplay: boolean }>`
|
|||||||
const StyledContentContainer = styled.div<{ isInRightDrawer: boolean }>`
|
const StyledContentContainer = styled.div<{ isInRightDrawer: boolean }>`
|
||||||
flex: 1;
|
flex: 1;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
background: ${({ theme }) => theme.background.primary};
|
||||||
padding-bottom: ${({ theme, isInRightDrawer }) =>
|
padding-bottom: ${({ theme, isInRightDrawer }) =>
|
||||||
isInRightDrawer ? theme.spacing(16) : 0};
|
isInRightDrawer ? theme.spacing(16) : 0};
|
||||||
`;
|
`;
|
||||||
|
|||||||
Reference in New Issue
Block a user