19 lines
356 B
CSS
19 lines
356 B
CSS
|
|
/* make embeds appear seamlessly */
|
|
|
|
.markdown-embed {
|
|
/* border: none; */
|
|
border: var(--embed-border-left);
|
|
/* hide some borders */
|
|
border-right-color: transparent;
|
|
|
|
border-left: var(--embed-border-left);
|
|
border-top-left-radius: 4pt;
|
|
border-bottom-left-radius: 4pt;
|
|
|
|
padding: 0ex 0 1ex 1ex;
|
|
}
|
|
|
|
*:has(>.markdown-embed) {
|
|
}
|