This commit is contained in:
Andras Bacsai
2023-06-16 10:45:27 +02:00
parent 66dc9f2560
commit 2b8467e6a1
5 changed files with 5 additions and 11 deletions

View File

@@ -15,18 +15,12 @@ body {
@apply pl-24 pr-10 mx-auto max-w-screen-xl pt-4;
}
input {
@apply input input-sm h-7 outline-none placeholder:text-neutral-700 text-white rounded bg-coolgray-200 w-full;
@apply input input-sm h-7 outline-none placeholder:text-neutral-700 text-white rounded bg-coolgray-200 w-full read-only:bg-coolgray-200/50 read-only:text-opacity-25 border-none;
}
input[type="checkbox"] {
@apply toggle toggle-warning toggle-xs rounded;
}
input[type="text"],
[type="number"],
[type="email"],
[type="password"] {
@apply read-only:bg-coolgray-200/50 read-only:text-opacity-25 border-none;
}
textarea {
@apply textarea placeholder:text-neutral-700 text-white rounded scrollbar bg-coolgray-200;
}