Atom Theme with Bells and Whistles

Hey, it’s strange that the list relationship feature is not working. I double checked to see if there’s an error in the css but it’s working fine. May I know what version of Obsidian you’re running?

This is the css code for relationship lines:

/*Bullet list relationship lines*/
.cm-hmd-list-indent .cm-tab, ul ul { position: relative; }
.cm-hmd-list-indent .cm-tab::before, ul ul::before {
 content:'';
 border-left: 1px solid #424958;
 position: absolute;
}
.cm-hmd-list-indent .cm-tab::before { left: 0; top: -5px; bottom: -4px; 
}
ul ul::before { left: -11px; top: 0; bottom: 0; 
}

You can try applying the original Atom theme or any other theme from Obsidian’s settings, and add this code to the CSS file in the vault to see if it works.