Fixed the overflow problem in formatting to stop

the wrapping
This commit is contained in:
reaction.la 2024-02-06 22:17:16 +00:00
parent 872ac0ccdb
commit 88cb8f49ff
No known key found for this signature in database
GPG Key ID: 99914792148C8388

View File

@ -48,9 +48,14 @@ pre.terminal_image {
font-family: 'DejaVu Sans Mono, Lucida Console, sans-serif'; font-family: 'DejaVu Sans Mono, Lucida Console, sans-serif';
background-color: #000; background-color: #000;
color: #0F0; color: #0F0;
font-size: 75%; font-size: 90%;
white-space: no-wrap; overflow: auto;
} }
pre.terminal_image > code { white-space: pre; position: relative;
}
pre.text { overflow: auto; }
pre.text > code { white-space: pre; }
* { box-sizing: border-box;} * { box-sizing: border-box;}