Skip to content

Commit 32a588f

Browse files
committed
make btn border radius consistent everywhere
1 parent 898281f commit 32a588f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/components/Filters.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const Filters = ({
6767
title="Show Only Due Today"
6868
checked={showOnlyDueToday}
6969
onChange={() => setShowOnlyDueToday((prev) => !prev)}
70-
className="h-4 w-4 cursor-pointer text-blue-600 focus:ring-blue-500 border-gray-300 rounded bg-white"
70+
className="h-4 w-4 cursor-pointer text-blue-600 focus:ring-blue-500 border border-gray-300 dark:border-gray-600 rounded bg-white"
7171
/>
7272
<label className="block text-sm font-medium text-gray-700 dark:text-gray-300">
7373
Show Only Due Today

src/components/Navbar.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const Navbar = () => {
3434
{/* Theme Toggle Button */}
3535
<button
3636
onClick={toggleTheme}
37-
className="h-10 w-10 flex items-center justify-center rounded-lg bg-gray-100 dark:bg-gray-800 hover:bg-gray-200 dark:hover:bg-gray-700 transition-all duration-300"
37+
className="h-10 w-10 flex items-center justify-center rounded bg-gray-100 dark:bg-gray-800 hover:bg-gray-200 dark:hover:bg-gray-700 transition-all duration-300"
3838
aria-label="Toggle theme"
3939
>
4040
{isDark ? (
@@ -49,7 +49,7 @@ const Navbar = () => {
4949
href="https://github.com/javydevx/neetcode-tracker"
5050
target="_blank"
5151
rel="noopener noreferrer"
52-
className="h-10 group relative flex items-center gap-2 px-4 py-2 bg-gray-200 dark:bg-gray-800 text-gray-900 dark:text-white rounded-lg overflow-hidden font-semibold transition-all duration-300 hover:shadow-xl"
52+
className="h-10 group relative flex items-center gap-2 px-4 py-2 bg-gray-200 dark:bg-gray-800 text-gray-900 dark:text-white rounded overflow-hidden font-semibold transition-all duration-300 hover:shadow-xl"
5353
>
5454
<span className="absolute inset-0 bg-gradient-to-r from-purple-600 to-blue-600 translate-y-full group-hover:translate-y-0 transition-transform duration-300"></span>
5555
<Github

src/pages/LeetCodeTracker.jsx

Lines changed: 2 additions & 2 deletions
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 focus:outline-none"
182+
className="px-4 py-2 cursor-pointer rounded 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}>
@@ -194,7 +194,7 @@ const LeetCodeTracker = () => {
194194
href={roadmapLinks[selectedList]}
195195
target="_blank"
196196
rel="noopener noreferrer"
197-
className="flex items-center gap-2 px-4 py-2 bg-orange-600 hover:bg-orange-700 text-white rounded-lg transition-colors"
197+
className="flex items-center gap-2 px-4 py-2 bg-orange-600 hover:bg-orange-700 text-white rounded transition-colors"
198198
title="View the official NeetCode roadmap"
199199
>
200200
<Map size={16} />

0 commit comments

Comments
 (0)