Picture of Ignacio Cinalli
Re: New components
by Ignacio Cinalli - Thursday, 13 January 2022, 1:06 PM
 

Hi Sherri, you can add a css class to the counters component for example: counters-games.

And then in your theme / Custom CSS/LESS code:

.counters{
    &.counters-games{
        .counters__widget {
            @media (min-width: @device-width-large) {
               grid-template-columns: repeat(2, 1fr);
            }
        }
    }
}