Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/modules/add-site/components/stepper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ export default function Stepper( {
>
<div
className={ cx(
`w-6 h-6 rounded-full flex items-center justify-center text-xs font-normal border-2 bg-transparent `,
`w-6 h-6 rounded-full flex items-center justify-center text-xs font-regular border-[1.5px] bg-transparent `,
step.isCurrent ? 'text-gray-900 border-gray-900' : 'border-gray-500 text-gray-500'
) }
>
{ stepNumber }
</div>
<Text
className={ cx(
`text-sm font-medium`,
`text-sm font-regular`,
step.isCurrent ? 'text-gray-900' : 'text-gray-500'
) }
>
Expand Down