deckcreate-oldal-javitas #62

Merged
Donat merged 10 commits from deckcreate-oldal-javitas into main 2025-10-23 17:29:45 +02:00
Showing only changes of commit f56ebbf2c3 - Show all commits
@@ -63,7 +63,7 @@ export default function DeckHeader({ deck, onUpdate, onSave, onBack }) {
</button> </button>
<h1 className="text-2xl font-bold text-[color:var(--color-text)]"> <h1 className="text-2xl font-bold text-[color:var(--color-text)]">
📝 Deck Szerkesztés 📝 Pakli Szerkesztés
</h1> </h1>
</div> </div>
@@ -83,14 +83,14 @@ export default function DeckHeader({ deck, onUpdate, onSave, onBack }) {
{/* Deck Name */} {/* Deck Name */}
<div> <div>
<label className="block text-[color:var(--color-text-muted)] text-sm font-medium mb-2"> <label className="block text-[color:var(--color-text-muted)] text-sm font-medium mb-2">
📦 Deck neve 📦 Pakli neve
</label> </label>
<input <input
type="text" type="text"
value={deck.name} value={deck.name}
onChange={(e) => handleInputChange('name', e.target.value)} onChange={(e) => handleInputChange('name', e.target.value)}
className="w-full px-4 py-2 rounded-xl bg-[color:var(--color-background)] border border-[color:var(--color-surface-selected)] text-[color:var(--color-text)] focus:ring-2 focus:ring-[color:var(--color-success)] focus:border-transparent outline-none transition-all duration-200" className="w-full px-4 py-2 rounded-xl bg-[color:var(--color-background)] border border-[color:var(--color-surface-selected)] text-[color:var(--color-text)] focus:ring-2 focus:ring-[color:var(--color-success)] focus:border-transparent outline-none transition-all duration-200"
placeholder="Add meg a deck nevét..." placeholder="Add meg a pakli nevét..."
/> />
</div> </div>