CSS styling options
Here is a detailed guide for how to style various aspects of the consent collecting widget.
General color inheritance
Font-sizing and line-spacing
Styling the border and checkmark of our checkboxes
.lm-base .lm-checkbox {
/* set the color of the checkbox border */
border-color: #abc123;
}
.lm-base .lm-checkbox::after {
/* set the color of the checkmark; inherits from checkbox border if not specified */
border-color: #abc123;
}
Styling error-related text
Styling the asterisk on required fields
Last updated