style: Remove shadow from input element for consistency

This commit is contained in:
Dries Augustyns
2025-12-19 13:40:52 +01:00
parent 007a908e83
commit 661bf2a9e7
2 changed files with 5 additions and 4 deletions
+4 -3
View File
@@ -11,7 +11,8 @@ import {
SelectContent,
SelectItemWithDescription,
SelectTrigger,
SelectValue
SelectValue,
Textarea
} from '@plunk/ui';
import type {Segment} from '@plunk/db';
import {CampaignAudienceType} from '@plunk/db';
@@ -243,13 +244,13 @@ export default function CreateCampaignPage() {
<div className="space-y-2">
<Label htmlFor="description">Description (Optional)</Label>
<textarea
<Textarea
id="description"
placeholder="Internal notes about this campaign"
value={description}
onChange={e => setDescription(e.target.value)}
rows={2}
className="w-full px-3 py-2 border border-neutral-200 rounded-lg text-sm resize-none focus:outline-none focus:ring-2 focus:ring-primary"
className="resize-none"
/>
</div>
</CardContent>