Reduce margin in dataview table with minimal cards settings

im using the minimal theme cards settings and dataview:

---
CssClasses: cards
---

is there any css to reduce the top margin?
I am referring to the margin at the level where the button for “edit this block” is located. i would really like to reduce that

i tried the following, but doesnt work

.cards2 progress{
  position: absolute;
  margin-top: -50px;
  overflow: hidden;
  padding: 0 0px
}

many thanks!

example:
any ideas how to reduce the space between the table and what’s before?

this is not the case out of cards:

This seems to do the trick:

.cards .dataview.table-view-table {
  margin-top: 0px;
  background-color: yellow;
}

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.