Adjust Button Font Color and Radius

As the title says, I’d like to change the font=color to white and radius the button so that it is a capsule. Possible?

3 Likes

Hi @Todd

add this code to the Custom CSS field on the Settings tab of your Calculator widget’s settings:

[class*="ButtonBase__Overlay-sc"]{
  color: #fff !important;  /*white font color*/
}
[class*="ButtonBase__ButtonContainer-sc"]{
  border-radius: 50px !important; /*button so that it is a capsule*/
}
3 Likes

Hi there, @Todd :wave:

I see that you’ve added the code shared by Sina to your widget already, and it worked great.

If you have any further questions, don’t hesitate to drop a line here. We’ll be delighted to help :wink:

1 Like