diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-11 10:37:14 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-11 10:37:14 +0800 |
commit | dcdde40e2df788da858451ef0e393dbde0d67f37 (patch) | |
tree | f8d33ba069326c86f4adf4869454d04a30bfd160 /static | |
parent | style.css: Increase max-width (diff) | |
download | forge-dcdde40e2df788da858451ef0e393dbde0d67f37.tar.gz forge-dcdde40e2df788da858451ef0e393dbde0d67f37.tar.zst forge-dcdde40e2df788da858451ef0e393dbde0d67f37.zip |
style.css: Padding in px, not rem
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static/style.css b/static/style.css index 2c90cd7..46558f6 100644 --- a/static/style.css +++ b/static/style.css @@ -16,7 +16,7 @@ footer { margin-left: auto; margin-right: auto; display: block; - padding: 0 1rem; + padding: 0 5px; width: fit-content; text-align: center; color: var(--light-text-color); @@ -27,7 +27,7 @@ footer a:link, footer a:visited { .padding-wrapper { margin: 1rem auto; max-width: 60rem; - padding: 0 1rem; + padding: 0 5px; } .padding-wrapper > * { width: 100%; |