舟橋厚芳
舟橋厚芳

Reputation: 11

How to remove the line of Ant design's "Step component"?

I want to know how to erase the line of Steps component in Ant design. Does anyone know the method? Ant-design official description

Upvotes: 1

Views: 1332

Answers (1)

Falyoun
Falyoun

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

Related Questions