Here is a small snippet to add a background/hover color when you click a button.
01) Log into your App Manager and select your app.
02) Click Colors from the left-hand-side of the screen (or the middle of the screen).
03) Scroll down until you get to the Advanced SCSS box and paste the following code. If there is already code in the advanced SCSS box, do not remove it. Start a new line “after” the last character in the box, then paste the code below.
/*** BEGIN: Add Hover Color To Buttons ***/
.button.button-custom:hover,
.button.button-custom:active {
color: #fff;
background-color: #0099c7;
}
/*** END: Add Hover Color To Buttons ***/
IMPORTANT NOTE: If you apply this modification, all buttons in your app will be changed.