Group Leave button

Hello,

Quick question, can the colour of the leave button in groups be changed, I had assumed this would be changed if i changed the “danger” colour but it did not.

Thanks

You can try this CSS:

button.btn.btn-icon-text.btn-danger.group-index-leave {
    background-color: blue;
    color: white;
}
.btn.btn-icon-text.btn-danger.group-index-leave > svg {
    color: white;
}

This changes the background color of the button to blue, and the icon and text to white.
image