fix: button width

pull/6513/head
Arik Chakma 3 months ago
parent cc1b2acd45
commit e763b8b76c
  1. 4
      src/components/Projects/ProjectMilestoneStrip.tsx

@ -137,7 +137,7 @@ export function ProjectMilestoneStrip(props: ProjectMilestoneStripProps) {
<button
className={cn(
'mt-3 text-center text-sm font-medium text-blue-600 underline underline-offset-2 hover:opacity-60',
'mt-3 inline-flex self-center text-center text-sm font-medium text-blue-600 underline underline-offset-2 hover:opacity-60',
stepIndex >= 1 && 'text-black no-underline',
)}
onClick={() => {
@ -156,7 +156,7 @@ export function ProjectMilestoneStrip(props: ProjectMilestoneStripProps) {
<button
className={cn(
'mt-3 text-sm font-medium text-blue-600 underline underline-offset-2 hover:opacity-60',
'mt-3 inline-flex self-center text-sm font-medium text-blue-600 underline underline-offset-2 hover:opacity-60',
stepIndex >= 2 && 'text-black no-underline',
stepIndex < 1 && 'text-black opacity-50 hover:opacity-50',
)}

Loading…
Cancel
Save