What is looks like you’re looking for is a way to create nodes with invisible borders.
You can get this effect by creating a css snippet with the following:
.canvas-node-container {
border: none;
text-align: center;
}
The nice part about this is that the default node has no border, and to add a border you just need to color the node.
Be warned! The effect is global to every canvas in your vault.
Take a look at this for more info:
2 Likes