consistent background color in notes (#10097)

fixes #10086 

![image](https://github.com/user-attachments/assets/c8233d63-9020-457f-9ce1-4c88d6dc2019)

![image](https://github.com/user-attachments/assets/3deeb644-eeb1-4073-9ee8-dd08745282f6)

---------

Co-authored-by: ehconitin <nitinkoche03@gmail.com>
This commit is contained in:
Mohammed Abdul Razak Wahab
2025-02-12 17:15:26 +05:30
committed by GitHub
parent 23d2e54439
commit d2d3b21c90

View File

@ -38,6 +38,7 @@ const StyledTabListContainer = styled.div<{ shouldDisplay: boolean }>`
const StyledContentContainer = styled.div<{ isInRightDrawer: boolean }>`
flex: 1;
overflow-y: auto;
background: ${({ theme }) => theme.background.primary};
padding-bottom: ${({ theme, isInRightDrawer }) =>
isInRightDrawer ? theme.spacing(16) : 0};
`;