To have emojis based on folder name:
.nav-folder.mod-root>.nav-folder-children>.nav-folder>.nav-folder-title[data-path^="03"] .nav-folder-title-content::before {
content: '🌜';
background-repeat: no-repeat;
display: inline-block;
width: 24px;
height: 15px;
}
Adding ^=
takes in all folders starting with given text, in my example stating with 03. Change ^=
to =
when assigning full name of folder.