In my current project I'm using a Markdown node with just one line of text:
And here is how it gets rendered in the Dashboard:
How can I eliminate that huge bottom padding in the group?
I tried several CSS class names AI suggested in the "Class" field but to no avail.
I know that I could use HTML in the Markdown node but I don't want to. It's a Markdown node and I want to stay clean and only use Markdown there.
I know I could use a template node instead but I really want to know why the Markdown node (I love Markdown!) does this and how to change it.
I also added a template node of type "CSS (all pages)" to my flow with this content:
.nrdb-ui-markdown p {
margin-bottom: 0 !important;
}
.nrdb-ui-markdown .v-card-text {
padding-top: 4px !important;
padding-bottom: 4px !important;
}
This was also AI suggested – and didn't do the trick.
I also checked in the Browser Developer Tools the Box Model and saw that all the padding and margin values (including bottom) are already 0 – for the inner-most <p>, the enclosing <div> of class "nrdb-ui-markdown-content" and the next and next <div> elements (classes "nrdb-ui-widget" and "nrdb-ui-markdown").
I'm out of ideas for the moment and am sure/hopeful there's an easy solution?



