Skip to content

Commit

Permalink
style: fix style
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas.J.Han <[email protected]>
  • Loading branch information
lukasjhan committed Aug 15, 2024
1 parent 342356c commit eb80ae1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/core/lib/components/Tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ const Tab: React.FC<{
aria-controls={panelId}
id={id}
onClick={onClick}
className={`px-6 py-3 focus:outline-none focus:ring-2 focus:ring-primary-50 transition-all duration-400 ease-in-out
className={`px-6 py-3 focus:outline-none focus:ring-2 focus:ring-primary-50 transition-all duration-400 ease-in-out rounded-2'
${
isSelected
? 'border-b-4 border-primary'
: 'text-gray-50 hover:text-gray-70 border-b-4 border-transparent'
? 'border-b-4 border-primary hover:bg-secondary-5'
: 'border-b-4 border-transparent hover:bg-secondary-5'
}`}
>
<Label
color={isSelected ? 'primary' : 'gray-60'}
color={isSelected ? 'primary' : 'gray-50'}
className={
isSelected ? 'cursor-pointer' : 'cursor-pointer hover:text-gray-70'
}
Expand Down Expand Up @@ -72,7 +72,7 @@ export const Tabs: React.FC<TabsProps> = ({ tabs }) => {
<div
role="tablist"
aria-label="Tab Navigation"
className="flex border-b border-gray-200"
className="flex border-b border-gray-20"
>
{tabs.map((tab, index) => (
<Tab
Expand Down

0 comments on commit eb80ae1

Please sign in to comment.