AnubisNekhet / AnuPpuccin

Personal theme for Obsidian
GNU General Public License v3.0
2.13k stars 161 forks source link

Is there any way to remove the dashed line from the Cards layout? #283

Open albertoloscerritos opened 4 months ago

albertoloscerritos commented 4 months ago

I love the cards layout. But I would really like to get rid of the dashed line. Is this possible?

image

Thanks :)

locksvur commented 4 months ago

i'm also wondering about this, let me know if anyone figures it out

DomizianoScarcelli commented 4 months ago

It can be removed by creating a CSS snippet with this content

.view-header {
    border-bottom: none !important;
}
albertoloscerritos commented 4 months ago

I am no CSS expert, but this is the snippet I stated using to remove the dashed line:

body.anp-card-layout {
    --file-header-border: var(--border-width)
    var(--background-modifier-border);
}

But @DomizianoScarcelli snippet also seems to work. So those are two ways to remove the dashed lines. Hopefully in future releases, the ability to remove the dashed line can become a core option for the theme.