diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-11 19:53:50 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-11 19:53:50 +0800 |
commit | 705274a92b34fd1ee7387ba217006cff7ff73be1 (patch) | |
tree | 1dbf942d9ea7ff62981c2f49556a955c5267bf77 /static/style.css | |
parent | repo_{index,tree_dir}.html, style.css: No inner margins on README td's (diff) | |
download | forge-705274a92b34fd1ee7387ba217006cff7ff73be1.tar.gz forge-705274a92b34fd1ee7387ba217006cff7ff73be1.tar.zst forge-705274a92b34fd1ee7387ba217006cff7ff73be1.zip |
style.css, *.html: Scrolling behavior
Diffstat (limited to '')
-rw-r--r-- | static/style.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/static/style.css b/static/style.css index 536560d..9d90dca 100644 --- a/static/style.css +++ b/static/style.css @@ -46,12 +46,6 @@ footer a:link, footer a:visited { max-width: 60rem; padding: 0 5px; } -.padding-wrapper > * { - width: 100%; -} -.padding-wrapper > table { - width: 100%; -} a:link, a:visited { text-decoration-color: var(--text-decoration-color); color: var(--link-color); @@ -66,6 +60,9 @@ table { border-spacing: 0px; border-collapse: collapse; } +table.wide { + width: 100%; +} td, th { padding: 3px 5px; border: var(--lighter-border-color) solid 1px; @@ -91,3 +88,6 @@ td#readme > *:first-child { .commit-id { font-family: monospace; } +pre, .scroll { + overflow-x: auto; +} |