Skip to content

Commit

Permalink
Issue 2340 - fixed bootstrap grid system class names on progress bar
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcottner committed Nov 13, 2023
1 parent f7d8ae3 commit 39e807d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/signoff/ProgressBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function ProgressStep({
? "complete"
: "disabled";
return (
<div className={`col-xs-3 bs-wizard-step ${status}`} key={step}>
<div className={`col-3 bs-wizard-step ${status}`} key={step}>
<div className="text-center bs-wizard-stepnum">{label}</div>
<div className="progress">
<div className="progress-bar" />
Expand Down

0 comments on commit 39e807d

Please sign in to comment.