Skip to content

Commit 0f88dca

Browse files
committed
feat: roadmap 2
1 parent 0605367 commit 0f88dca

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/pages/roadmap/RoadmapViewerPage.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -270,23 +270,23 @@ const RoadmapViewerPage = () => {
270270
<div className="mb-8 flex justify-center gap-4 p-1 bg-gray-800/60 backdrop-blur-sm rounded-xl border border-gray-700">
271271
<button
272272
onClick={() => setViewMode('roadmap')}
273-
className={`px-5 py-2 rounded-lg text-sm font-medium transition-colors flex items-center gap-2 ${
273+
className={`px-5 py-2 rounded-lg text-sm font-medium font-mono transition-all duration-300 flex items-center gap-2 border-2 ${
274274
viewMode === 'roadmap'
275-
? 'bg-purple-600 text-white shadow-lg'
276-
: 'bg-transparent text-gray-300 hover:bg-gray-700/50'
275+
? 'bg-indigo-500/30 text-white shadow-lg border-indigo-500'
276+
: 'bg-transparent text-gray-300 border-gray-700 hover:border-indigo-500 hover:bg-primary-700/20'
277277
}`}
278278
>
279279
<KanbanIcon size={20} /> Roadmap View
280280
</button>
281281
<button
282282
onClick={() => setViewMode('table')}
283-
className={`px-5 py-2 rounded-lg text-sm font-medium transition-colors flex items-center gap-2 ${
283+
className={`px-5 py-2 rounded-lg text-sm font-medium font-mono transition-all duration-300 flex items-center gap-2 border-2 ${
284284
viewMode === 'table'
285-
? 'bg-purple-600 text-white shadow-lg'
286-
: 'bg-transparent text-gray-300 hover:bg-gray-700/50'
285+
? 'bg-indigo-500/30 text-white shadow-lg border-indigo-500'
286+
: 'bg-transparent text-gray-300 border-gray-700 hover:border-indigo-500 hover:bg-primary-700/20'
287287
}`}
288288
>
289-
<ListBulletsIcon size={20} /> Table View
289+
<ListBulletsIcon size={20} /> Table View
290290
</button>
291291
</div>
292292

0 commit comments

Comments
 (0)