I've created a class for a subset of button widgets in my template for which I want to set a standard for colorWidet
I've I set the colour in the inspector for colorWidget the button looks how I want it to but I want to add this to my Theme.
I've done the following, the label bit now works but I can't get the boarder or infill to work:
.wizardGreenInstBtn label {
color: #2dcf7a;
word-wrap: break-word;
justify-content: flex-end;
font-size: 150%;
padding-left : 050px
}
.wizardGreenInstBtn.button-container {
border-radius:3px;
colorWidget: #8cff8c;
}
I want to do this as a class and I don't want to globally affect the rest of the buttons, just one set. When this is in place I can then create a number of classes of button.
Sorry, my CSS etc is very limited so I'm struggling with this.