Hi there,
I am wondering can we make a button in outsystems using gradient color, not solid, like this:
thanks
Hi @IQ78 ,You can create gradient buttons using custom CSS. For example, I added a new class to make the button gradient
After creating a new class, you can add it to the button you want to make gradient.Hopes this helpRegardsAbhijith
hi @IQ78
You can add new class btn-gradient and add this css:
.btn-gradient {
background: linear-gradient(90deg,#f6a000 0%,#e68600 40%,#cf6f00 75%,#b95f00 100%);
color: #fff;
border-radius: 10px;
padding: 24px;
text-align: center;
border: 0px;
width: 100%;
}
I hope this helps
Thanks
You can add custom-class for button
and override color: backgound: linear-gardient()
Thank u, alls