Skip to content
This repository has been archived by the owner on May 18, 2024. It is now read-only.

Commit

Permalink
fix: change textarea caret color and background color
Browse files Browse the repository at this point in the history
  • Loading branch information
sahebgroww committed Jan 11, 2024
1 parent b26ac1d commit 29749ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const TextArea = (props: Props) => {
...restProps
} = props;

const textAreaClassName = cn({
const textAreaClassName = cn('backgroundSurfacePrimary', {
'txta37Area': true,
'txta37Normal': error?.length === 0,
'txta37Error': error && error.length !== 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
.txta37Area {
resize: none;
border-radius: 8px;
caret-color: var(--priamryClr);
caret-color: var(--green500);
padding: 16px;
color: var(--gray900);
font-size: 16px;
Expand Down

0 comments on commit 29749ed

Please sign in to comment.