Skip to content

Commit

Permalink
fixed the gap between note/title placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvaraj8019 committed Oct 13, 2024
1 parent e2179a7 commit e81945d
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,17 @@ const StyledTextArea = styled(TextareaAutosize)`
`;

const StyledTextAreaContainer = styled.div`
border: ${({ theme }) => `1px solid ${theme.border.color.medium}`};
border: ${({ theme }) => `1px solid ${theme.border.color.light}`};
position: relative;
width: 100%;
padding: ${({ theme }) => theme.spacing(2)} ${({ theme }) => theme.spacing(0)};
padding: ${({ theme }) => theme.spacing(2)} ${({ theme }) => theme.spacing(1)};
border-radius: ${({ theme }) => theme.border.radius.sm};
background: ${({ theme }) => theme.background.primary};
@media (max-width: 768px) {
position: absolute;
left: -40px;
top: 10px;
}
`;

const StyledLightIconButtonContainer = styled.div`
Expand Down

0 comments on commit e81945d

Please sign in to comment.