feat: add watch api in cluster
This commit is contained in:
@@ -5,14 +5,24 @@ import styled from 'styled-components';
|
||||
const { Step } = Steps;
|
||||
|
||||
const Wrapper = styled.div`
|
||||
padding-block: 20px;
|
||||
padding-block: 30px;
|
||||
background-color: var(--ant-color-bg-container);
|
||||
.ant-steps-item-description {
|
||||
max-width: 300px !important;
|
||||
color: var(--ant-color-text-description) !important;
|
||||
}
|
||||
.ant-steps-item-content > .ant-steps-item-title {
|
||||
font-weight: 600;
|
||||
// font-weight: 600;
|
||||
}
|
||||
.ant-steps-item {
|
||||
.ant-steps-item-container {
|
||||
// .ant-steps-item-icon {
|
||||
// margin-inline-start: 0 !important;
|
||||
// }
|
||||
// .ant-steps-item-tail {
|
||||
// margin-inline-start: 0 !important;
|
||||
// }
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
@@ -25,7 +35,7 @@ const ClusterSteps: React.FC<{
|
||||
|
||||
return (
|
||||
<Wrapper>
|
||||
<Steps current={currentStep} size="small" onChange={onChange}>
|
||||
<Steps current={currentStep} size="small" onChange={onChange} progressDot>
|
||||
{steps.map((step) => (
|
||||
<Step
|
||||
disabled={step.disabled}
|
||||
|
||||
Reference in New Issue
Block a user