order: fixing

This commit is contained in:
2026-01-02 05:28:46 +03:00
parent f1ae1568a8
commit b33bae562d
9 changed files with 462 additions and 797 deletions

View File

@@ -112,7 +112,17 @@ export default function Stepper({ statuses = [] }: StepperProps) {
{steps.map((step, index) => (
<Fragment key={`label-${step.key}`}>
<Col>
<ProText type={step.isPending ? "secondary" : undefined}>
<ProText
style={{
fontWeight: 400,
fontStyle: "Regular",
fontSize: 14,
lineHeight: "140%",
letterSpacing: "0%",
textAlign: "center",
color: step.isPending ? "#99A2AE" : "#333333",
}}
>
{step.label}
</ProText>
</Col>