How can we remove this using UI Builder?

kiran kumar m1
Tera Contributor

How can we remove this using UI Builder?

kirankumarm1_0-1711091881944.png

 

1 REPLY 1

Akshay Gupta2
Kilo Sage

HI @kiran kumar m1 

 

For removing scroll bar you could try adding css in the card. I believe you have a some container component, where you have this report via iframe or some other component. You can also try to resize container so it fits content.

 

*{
overflow: hidden;
//overflow-y: hidden; /* Hide vertical scrollbar */
//  overflow-x: hidden; /* Hide horizontal scrollbar */
}

 

Do give a thumbsup.

 

Regards,

Akshay