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
parent
5efdb262cb
commit
f8eee6d993
|
@ -111,6 +111,11 @@ pre {
|
||||||
whether the content fits on screen or not
|
whether the content fits on screen or not
|
||||||
*/
|
*/
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
|
|
||||||
|
/*
|
||||||
|
force it back to 80ch when the workaround from above doesn't apply
|
||||||
|
*/
|
||||||
|
width: 80ch;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue