diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-14 13:31:17 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-14 13:53:34 +0800 |
commit | b072d8bc48e35dc814642ae0cee190db42fb56cf (patch) | |
tree | 5dc381baa29814072bc545765cbe73a293270ecc /static | |
parent | *: Make the forge title configurable (diff) | |
download | forge-b072d8bc48e35dc814642ae0cee190db42fb56cf.tar.gz forge-b072d8bc48e35dc814642ae0cee190db42fb56cf.tar.zst forge-b072d8bc48e35dc814642ae0cee190db42fb56cf.zip |
reop_commit: Fix immediate newlines after <pre>
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/static/style.css b/static/style.css index fae12c9..8441a0c 100644 --- a/static/style.css +++ b/static/style.css @@ -147,18 +147,18 @@ td#readme > *:first-child { color: grey; } .chunk-addition { - color: green; + background-color: green; } @media (prefers-color-scheme: dark) { .chunk-addition { - color: lime; + background-color: lime; } } .chunk-deletion { - color: red; + background-color: red; } .chunk-unknown { - color: yellow; + background-color: yellow; } pre.chunk { margin-top: 0; |