style: fix a bug with <pre> width

The width of terminal and paper text boxes could shrink below 80 characters
in the desktop layout. The will no longer do that.
master
BodgeMaster 2024-04-16 20:36:00 +02:00
parent 5efdb262cb
commit f8eee6d993
1 changed files with 5 additions and 0 deletions

View File

@ -111,6 +111,11 @@ pre {
whether the content fits on screen or not
*/
overflow: visible;
/*
force it back to 80ch when the workaround from above doesn't apply
*/
width: 80ch;
}
}