pre wasn't kept in line with #content width so was overflowing

This commit is contained in:
Pagwin 2024-10-28 15:07:26 -04:00
parent a5fe608b2e
commit ce7860ebc6
No known key found for this signature in database
GPG key ID: 81137023740CA260

View file

@ -62,7 +62,11 @@ blockquote {
pre {
min-height: 2em;
max-width: calc(100% - 2em);
/*
* Not sure why this isn't the same as the #content width.
* Is the font size different for some reason?
* */
max-width: 82em;
width: fit-content;
overflow:scroll;
/*background: #444;*/