Css, multixy pad size

I’m trying to change individual pad size with ccs. I’ve tried the following, but it doesn’t work:

.drag-event pad-0{
–pointSize: 10rem;
}

What am I missing?
Cheers

This works:

.pad-0{
--pointSize: 10rem!important;
}

For coherence’s sake, the variable will be changed to --point-size.

ah, of course :slight_smile:

Thanks!