Skeleton
Skeleton copied to clipboard
Code block size inconsistent for long lines with horizontal scrolling
My investigation of https://github.com/wild-flame/jekyll-simple/issues/13 leads me to suspect Skeleton CSS

You can see this on getskeleton.com itself:

Tested on Chromium 83 and Firefox 78
workaround: white-space: pre-wrap
Fixed for too wide with display: inline-block, but also shrinks for not too wide code blocks
I use the following workaround:
pre > code {
overflow-x: scroll;
}
If it works I would tell you to make a PR but looks like the author of this repo isn't maintaining it.