mirror of https://gitlab.com/curben/blog
fix(css): set codeblock width to minimum
This commit is contained in:
parent
07c59dc42a
commit
66211e7d9c
|
@ -185,8 +185,13 @@ code,
|
||||||
kbd,
|
kbd,
|
||||||
pre,
|
pre,
|
||||||
samp {
|
samp {
|
||||||
font-size: 0.9em;
|
|
||||||
background: #333;
|
background: #333;
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* set codeblock width to minimum */
|
||||||
|
pre {
|
||||||
|
max-width: min-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Hide post's excerpt in article */
|
/* Hide post's excerpt in article */
|
||||||
|
|
Loading…
Reference in New Issue