Height adjustment of unsupported file List

Is there anyone who knows where I can adjust ‘margin & padding’ between two adjacent file lists?
Actually, I’d like to reduce them.

Now, the theme of my Obsidian is ‘minimal’.
When I turned ‘theme’ off, there was no big difference there.
So, I guess that it doesn’t depend on theme.

Just use CSS snippets as below:

.markdown-preview-view .file-embed {
  padding: 4px 4px 4px 4px;
  margin: 4px 4px 4px 4px;
}

You can adjust the numbers according to your need.

3 Likes

That solves the problem.

Thank you for your help.