Skip to content

Commit

Permalink
fix: consistent disabled form inputs (#2981)
Browse files Browse the repository at this point in the history
  • Loading branch information
justinlettau committed Apr 16, 2024
1 parent b86ec12 commit 50dfac4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/styled/select.css
Expand Up @@ -67,7 +67,7 @@
&-disabled,
&:disabled,
&[disabled] {
@apply border-base-200 bg-base-200 placeholder-base-content text-base-content cursor-not-allowed text-opacity-20 placeholder-opacity-20;
@apply border-base-200 bg-base-200 placeholder-base-content text-base-content/40 cursor-not-allowed placeholder-opacity-20;
}
&-multiple,
&[multiple],
Expand Down
2 changes: 1 addition & 1 deletion src/components/styled/textarea.css
Expand Up @@ -59,6 +59,6 @@
&-disabled,
&:disabled,
&[disabled] {
@apply border-base-200 bg-base-200 placeholder-base-content cursor-not-allowed text-opacity-20 placeholder-opacity-20;
@apply border-base-200 bg-base-200 placeholder-base-content text-base-content/40 cursor-not-allowed placeholder-opacity-20;
}
}

0 comments on commit 50dfac4

Please sign in to comment.