10-04-2026
This commit is contained in:
parent
4d6b4930b2
commit
4bb89aad8c
836 changed files with 52961 additions and 5950 deletions
|
|
@ -1,3 +1,4 @@
|
|||
@import "./web/fonts.css";
|
||||
@import "tailwindcss";
|
||||
@import "../../vendor/livewire/flux/dist/flux.css";
|
||||
|
||||
|
|
@ -70,10 +71,16 @@ select[data-flux-control] {
|
|||
@apply text-zinc-900 dark:text-zinc-50;
|
||||
}
|
||||
|
||||
/* Placeholder sollte deutlich heller sein */
|
||||
/* Placeholder-Farbe (light mode) */
|
||||
input[data-flux-control]::placeholder,
|
||||
textarea[data-flux-control]::placeholder {
|
||||
@apply text-zinc-400 dark:text-zinc-700;
|
||||
color: var(--color-zinc-400);
|
||||
}
|
||||
|
||||
/* Placeholder-Farbe (dark mode) – @apply dark: funktioniert nicht in ::placeholder */
|
||||
:where(.dark, .dark *) input[data-flux-control]::placeholder,
|
||||
:where(.dark, .dark *) textarea[data-flux-control]::placeholder {
|
||||
color: var(--color-zinc-500);
|
||||
}
|
||||
|
||||
.shadow-elegant {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue