Is it possible to change button color

Actually, we can using this workaround:

Replacing the “See All” class to button’s class and the order of the component:

<pre><span><style>
div[id*='screenScrollView'] > div > :nth-of-type(4) button {
    background-color: red;
    color: yellow;
}

5 Likes