1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-10 20:09:57 +00:00

Fix unwrapped oveflowed code blocks not showing scroll bars

This commit is contained in:
Leilei332 2024-07-24 08:07:25 +08:00
parent b8ed59f7dc
commit 739e8cdf55

View File

@ -288,10 +288,12 @@ form.tc-form-inline {
Markdown likes putting code elements inside pre elements
*/
pre > code {
padding: 0;
display: block;
padding: 0.5em;
border: none;
background-color: inherit;
color: inherit;
overflow-x: auto;
}
/*