Style tweaks for onboarding wizard step 1
- Set animation panel (right half) background to #1d1d1d - Add more margin above Company name form label - Make form labels white when input is focused or has value using Tailwind group/focus-within pattern Co-Authored-By: Paperclip <noreply@paperclip.ing> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
b7744a2215
commit
d4d1b2e7f9
1 changed files with 5 additions and 5 deletions
|
|
@ -593,8 +593,8 @@ export function OnboardingWizard() {
|
|||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<label className="text-xs text-muted-foreground mb-1 block">
|
||||
<div className="mt-3 group">
|
||||
<label className={cn("text-xs mb-1 block transition-colors", companyName.trim() ? "text-foreground" : "text-muted-foreground group-focus-within:text-foreground")}>
|
||||
Company name
|
||||
</label>
|
||||
<input
|
||||
|
|
@ -605,8 +605,8 @@ export function OnboardingWizard() {
|
|||
autoFocus
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<label className="text-xs text-muted-foreground mb-1 block">
|
||||
<div className="group">
|
||||
<label className={cn("text-xs mb-1 block transition-colors", companyGoal.trim() ? "text-foreground" : "text-muted-foreground group-focus-within:text-foreground")}>
|
||||
Mission / goal (optional)
|
||||
</label>
|
||||
<textarea
|
||||
|
|
@ -1185,7 +1185,7 @@ export function OnboardingWizard() {
|
|||
</div>
|
||||
|
||||
{/* Right half — ASCII art (hidden on mobile) */}
|
||||
<div className="hidden md:block w-1/2 overflow-hidden">
|
||||
<div className="hidden md:block w-1/2 overflow-hidden bg-[#1d1d1d]">
|
||||
<AsciiArtAnimation />
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue