Skip to content

Commit

Permalink
Remove shadow from MarkdownEditor textarea (#2765)
Browse files Browse the repository at this point in the history
* Remove box shadow from `MarkdownEditor` input

* Create cool-jeans-applaud.md
  • Loading branch information
iansan5653 committed Jan 11, 2023
1 parent 74016a7 commit 154db4b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/cool-jeans-applaud.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@primer/react": patch
---

Remove shadow from `MarkdownEditor` `textarea`
1 change: 1 addition & 0 deletions src/drafts/MarkdownEditor/_MarkdownInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ export const MarkdownInput = forwardRef<HTMLTextAreaElement, MarkdownInputProps>
sx={{
width: '100%',
borderStyle: 'none',
boxShadow: 'none',
height: fullHeight ? '100%' : undefined,
outline: theme => {
return isDraggedOver ? `solid 2px ${theme.colors.accent.fg}` : undefined
Expand Down

0 comments on commit 154db4b

Please sign in to comment.