How to set gradient background color in container?

I need to set gradient background for the container.

image

I set the background using style. How to do set background about gradient using linear-gradient?

Hello, you can achieve that like this

._retool-container1 {
  background: linear-gradient(45deg, steelblue, gray, darkblue);
}

How to use Custom CSS in Retool Apps