I have a css gradient that looks like this
And the code i used for this is as follows
background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(243,249,252,1) 0%, rgba(243,249,252,1) 50%, rgba(231,244,249,1) 50%, rgba(255,255,255,1) 100%);
As you can see left 50% is consist of single color and the right 50% has a gradient from left to right. I want to make that right gradient flows from bottom to top. How can i do this?