|
@@ -472,18 +472,19 @@ const TaskOrder: React.FC<IPropsType> = (props) => {
|
|
|
background: 'rgba(23, 85, 255, 0.50)',
|
|
|
}}
|
|
|
/>
|
|
|
- <div style={{ padding: '0.15rem 0.2rem' }}>
|
|
|
+ <div
|
|
|
+ className={styles.taskStep}
|
|
|
+ style={{ padding: '0.15rem 0.2rem' }}
|
|
|
+ >
|
|
|
<Steps
|
|
|
direction="vertical"
|
|
|
current={stepInfo?.length ? stepInfo.length - 1 : 0}
|
|
|
progressDot
|
|
|
items={stepInfo?.map((item) => {
|
|
|
return {
|
|
|
- title: (
|
|
|
- <span className={styles.fontS28}>{item.content}</span>
|
|
|
- ),
|
|
|
+ title: <div className={styles.fontS28}>{item.content}</div>,
|
|
|
description: (
|
|
|
- <span className={styles.fontS24}>{item.time}</span>
|
|
|
+ <div className={styles.fontS24}>{item.time}</div>
|
|
|
),
|
|
|
};
|
|
|
})}
|