Skip to content

Commit

Permalink
Fix not applying padding to select element in phone browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
zahrabayatt committed Oct 18, 2024
1 parent aadbbdd commit 8f8bb94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/task/TaskForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const TaskForm = () => {
<select
onChange={(e) => setNewCategoryId(e.target.value)}
value={newCategoryId || ""}
className="rounded border border-gray-300 p-2 text-sm dark:border-gray-600 dark:bg-gray-700 dark:text-white"
className="rounded border border-gray-300 !p-2 text-sm dark:border-gray-600 dark:bg-gray-700 dark:text-white"
>
<option value="">Select Category</option>
{categories.map((cat) => (
Expand Down

0 comments on commit 8f8bb94

Please sign in to comment.