Quick Guide: Customizing your canvas (rotating nodes, removing borders/backgrounds)

Here is a snippet to center the text for all cards except for the embedded notes.

Useful when hiding all borders (see my snippet above), since the connecting lines are sometimes a bit off (if you use connecting lines).

.canvas-node-container {
    text-align: center;
}
.canvas-node-container .is-loaded {
  text-align: left;
}
4 Likes