Hide internal border on code block with baseline theme

This commit is contained in:
Benji Grant 2025-10-19 22:25:20 +11:00
parent fb6e038c18
commit 6c3b4e1825
No known key found for this signature in database
GPG key ID: D41929A51D291D4D
2 changed files with 7 additions and 0 deletions

View file

@ -0,0 +1,5 @@
---
"obsidian-css-inlay-colors": patch:fix
---
Ensure borders between the preview and text are hidden with certain themes in the live preview mode

View file

@ -27,10 +27,12 @@
padding-inline-end: 0;
border-start-end-radius: 0;
border-end-end-radius: 0;
border-inline-end: 0;
& + .cm-inline-code:not(.cm-formatting) {
padding-inline-start: 0;
border-start-start-radius: 0;
border-end-start-radius: 0;
border-inline-start: 0;
}
}