diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2024-09-02 22:53:43 -0500 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2024-09-02 22:53:43 -0500 |
commit | 03b7ee9f6f471097cd1eef4e658208b54100acac (patch) | |
tree | 247064d23d2c99fa9af8e0849bc7767cf666b767 | |
parent | 3979d48564cea0aa5718032f45efbc502e62a207 (diff) | |
download | hugo-theme-tjkbasic-03b7ee9f6f471097cd1eef4e658208b54100acac.tar.xz hugo-theme-tjkbasic-03b7ee9f6f471097cd1eef4e658208b54100acac.zip |
fix .chroma overflow
-rw-r--r-- | static/stylesheets/style.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/static/stylesheets/style.css b/static/stylesheets/style.css index aae09e9..a4a8093 100644 --- a/static/stylesheets/style.css +++ b/static/stylesheets/style.css @@ -82,6 +82,9 @@ a { /* highlighted code */ .chroma { background: none; +} + +div.chroma { overflow: scroll; } |