Use same overlay background for field inputs (#5719)

Fixes #5593
This commit is contained in:
Marie
2024-06-03 17:17:25 +02:00
committed by GitHub
parent 09bfb617b2
commit f7cdd14c75
3 changed files with 3 additions and 5 deletions
@@ -34,12 +34,10 @@ const StyledTextArea = styled(TextareaAutosize)`
`;
const StyledTextAreaContainer = styled.div`
box-shadow: ${({ theme }) => theme.boxShadow.strong};
border: ${({ theme }) => `1px solid ${theme.border.color.light}`};
position: relative;
width: 100%;
padding: ${({ theme }) => theme.spacing(2)} ${({ theme }) => theme.spacing(1)};
background-color: ${({ theme }) => theme.background.primary};
border-radius: ${({ theme }) => theme.border.radius.sm};
`;