Skip to content

Commit

Permalink
fix: textarea background color value
Browse files Browse the repository at this point in the history
  • Loading branch information
2nthony committed Dec 29, 2023
1 parent 5bb5ffc commit c9be040
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/EditorComponents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export const ToolbarButton = styled.button`

export const Textarea = styled.textarea<Props>`
color: var(--textPrimary, #1e2134);
background-color: var(--fillBgInputDefault);
background-color: var(--fillBgInputDefault, #fbfcfe);
box-sizing: border-box;
width: 100%;
min-height: 144px;
Expand All @@ -163,7 +163,6 @@ export const Textarea = styled.textarea<Props>`
font-size: 14px;
line-height: 24px;
padding: 10px 16px;
background: #fbfcfe;
font-family: Inter, sans-serif;
border: none;
border-bottom: 1px solid var(--strokeActionDefault, #e2e8f0);
Expand Down

0 comments on commit c9be040

Please sign in to comment.