Home > Blockchain >  How to increase the height of progress component in antd
How to increase the height of progress component in antd

Time:04-21

I have tried height:'50px' in style prop which is increasing the height of the container but not the progress bar.

I tried to target base classes as below which doesn't work as well.

.ant-progress-line .ant-progress-outer .ant-progress-inner div.ant-progress-bg {
  height: 50px;
}

how to achieve the expected behavior? enter image description here

CodePudding user response:

This should work fine:

.ant-progress-bg {
    height: 20px !important;
}
  • Related