damiankorcz / Prism-Theme

A Comprehensive, Highly-Customisable and Elegant Light/Dark Theme for Obsidian.md
https://www.buymeacoffee.com/DamianKorcz
MIT License
369 stars 13 forks source link

Can callout borders be removed? #136

Closed JenFau closed 1 year ago

JenFau commented 1 year ago

I'd like to remove the color border around callouts to make it look cleaner (to me) - can this be done, please?

damiankorcz commented 1 year ago

You can use this as a CSS snippet:

body:not(.pt-disable-callout-styling) .callout .callout-title {
    border: unset;
}

body:not(.pt-disable-callout-styling) .callout .callout-content {
    border: unset;
}
JenFau commented 1 year ago

Thank you