Reputation: 11
I want to know how to erase the line of Steps component in Ant design.
Does anyone know the method?
Upvotes: 1
Views: 1332
Reputation: 3966
You can remove by modifying the css
classes of steps component
.ant-steps-item > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
background: transparent !important;
}
Upvotes: 1