Skip to content

Commit 09fbe52

Browse files
authored
Update markdown-dark.css
1 parent bb128b7 commit 09fbe52

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

live-view/extensions/markdown-dark.css

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ body hr {
179179
margin: 24px 0;
180180
background-color: var(--color-border-default);
181181
border: 0;
182+
border-radius: 10px;
182183
}
183184

184185
body img {
@@ -240,9 +241,21 @@ body table tr:nth-child(2n) {
240241
body blockquote {
241242
padding: 0 1em;
242243
color: var(--color-fg-muted);
243-
border-left: 0.25em solid var(--color-border-default);
244244
margin-left: 0;
245245
margin-right: 0;
246+
position: relative;
247+
padding-left: calc(1em + 0.25em);
248+
}
249+
250+
body blockquote::before {
251+
content: '';
252+
height: 100%;
253+
width: 0.25em;
254+
background: var(--color-border-default);
255+
position: absolute;
256+
left: 0;
257+
top: 0;
258+
border-radius: 10px;
246259
}
247260

248261
body dl {

0 commit comments

Comments
 (0)