Skip to content

Commit

Permalink
fix(TextArea): add background color and text for dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
talkor committed May 20, 2024
1 parent f384d7c commit e619967
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/core/src/components/TextArea/TextArea.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
.label {
display: inline-flex;
gap: var(--spacing-xs);
color: var(--primary-text-color);

&.required::after {
content: "*";
Expand All @@ -29,6 +30,8 @@
border-radius: var(--border-radius-small);
padding: var(--spacing-small) var(--spacing-medium);
outline: none;
background-color: var(--secondary-background-color);
color: var(--primary-text-color);

&:hover {
border-color: var(--primary-text-color);
Expand Down

0 comments on commit e619967

Please sign in to comment.