Skip to content

Commit

Permalink
feat:hover-effect for better UI/UX
Browse files Browse the repository at this point in the history
  • Loading branch information
AkashJana18 committed Oct 9, 2024
1 parent c2c5f07 commit 9470149
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/SettingsBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ const SettingsBar = ({ setActiveTab, activeTab }: SettingsBarProps) => {
<button
key={index}
onClick={() => setActiveTab(tab)}
className={`snap-start h-9 rounded-3xl px-4 font-bold ${
className={`snap-start h-9 rounded-3xl px-4 font-bold hover:text-neutral-600 dark:hover:text-white/60 ${
activeTab === tab
? 'bg-purple-3000 text-purple-30 dark:bg-dark-charcoal'
? 'bg-neutral-100 text-neutral-600 dark:bg-dark-charcoal dark:text-white/60'
: 'text-gray-6000'
}`}
>
Expand Down

0 comments on commit 9470149

Please sign in to comment.