Skip to content

Commit 898281f

Browse files
committed
rmv outline form select tags
1 parent 1163d31 commit 898281f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/Filters.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const Filters = ({
2626
title="Category"
2727
value={filterCategory}
2828
onChange={(e) => setFilterCategory(e.target.value)}
29-
className="w-full p-2 cursor-pointer border border-gray-300 dark:border-gray-600 rounded bg-white dark:bg-gray-700 text-gray-900 dark:text-gray-100 focus:ring-2 focus:ring-blue-500 transition-colors"
29+
className="w-full p-2 cursor-pointer border border-gray-300 dark:border-gray-600 rounded bg-white dark:bg-gray-700 text-gray-900 dark:text-gray-100 focus:outline-none transition-colors"
3030
>
3131
{categories.map((cat) => (
3232
<option
@@ -47,7 +47,7 @@ const Filters = ({
4747
title="Difficulty"
4848
value={filterDifficulty}
4949
onChange={(e) => setFilterDifficulty(e.target.value)}
50-
className="w-full p-2 cursor-pointer border border-gray-300 dark:border-gray-600 rounded bg-white dark:bg-gray-700 text-gray-900 dark:text-gray-100 focus:ring-2 focus:ring-blue-500 transition-colors"
50+
className="w-full p-2 cursor-pointer border border-gray-300 dark:border-gray-600 rounded bg-white dark:bg-gray-700 text-gray-900 dark:text-gray-100 focus:outline-none transition-colors"
5151
>
5252
{difficulties.map((diff) => (
5353
<option
@@ -69,7 +69,7 @@ const Filters = ({
6969
onChange={() => setShowOnlyDueToday((prev) => !prev)}
7070
className="h-4 w-4 cursor-pointer text-blue-600 focus:ring-blue-500 border-gray-300 rounded bg-white"
7171
/>
72-
<label className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2">
72+
<label className="block text-sm font-medium text-gray-700 dark:text-gray-300">
7373
Show Only Due Today
7474
</label>
7575
</div>

src/pages/LeetCodeTracker.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ const LeetCodeTracker = () => {
179179
<select
180180
value={selectedList}
181181
onChange={(e) => setSelectedList(e.target.value)}
182-
className="px-4 py-2 cursor-pointer rounded-lg border border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-700 text-gray-800 dark:text-gray-200"
182+
className="px-4 py-2 cursor-pointer rounded-lg border border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-700 text-gray-800 dark:text-gray-200 focus:outline-none"
183183
>
184184
{Object.keys(problemLists).map((listName) => (
185185
<option key={listName} value={listName}>

0 commit comments

Comments
 (0)