fix: consistent disabled form inputs (#2981)

This commit is contained in:
Justin Lettau 2024-04-16 04:47:21 -07:00 committed by GitHub
parent b86ec1285a
commit 50dfac4fec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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],

View File

@ -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;
}
}