Trying to make my custom CSS work in the new RemNote

It’s been a while since new update broke most of my custom CSS. I’ve been putting off updating it in the hopes that users would get some kind of conversion tool, but this doesn’t seem like it’s happening. So I guess I need to redo it all from scratch.

Anyone knows how to target Rems with a certain tag?

This doesn’t seem to work anymore: [data-rem-container-tags~=“tagname”])

Thanks.

1 Like
/* You can try */
[data-rem-tags~=“tagname”] { }

Thanks!

But turns out the change that broke my CSS is actually related to the targeting of children of the tagged Rem.

This used to work, and doesn’t anymore (I want only children of the tagged Rem to become blue):

 [data-rem-tags~="blueBackgroundChildren"]
:nth-child(2)
 .rem-text   {
 background-color: blue;
 }