diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.lonestar.org> | 2019-05-04 19:34:44 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.lonestar.org> | 2019-05-04 19:34:44 -0400 |
| commit | b9ebc89899ff84d7336ff14dda550c75554d05c7 (patch) | |
| tree | 00d0f69465fdedbaaf7d6ee6afda7ebf1bc5cbc8 | |
| parent | 99679d19f89181916c8957bf8d649793fc62ebe7 (diff) | |
Scroll source blocks that are too wide
| -rw-r--r-- | haunt/css/jakob.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/haunt/css/jakob.css b/haunt/css/jakob.css index d2e7cc2..ce3a1af 100644 --- a/haunt/css/jakob.css +++ b/haunt/css/jakob.css @@ -47,12 +47,13 @@ pre { font-family: "Hack", monospace; font-size: 90%; line-height: 110%; - min-width: 100%; background-color: #303539; padding: 1rem; color: #f0e9dc; border-radius: 4px; display: inline-block; + width: 100%; + overflow-x: scroll; } code { |