diff options
| author | Christian Cleberg <[email protected]> | 2025-12-17 10:01:03 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-12-17 10:01:03 -0600 |
| commit | a9add7b78faefed8c55e44d36120a3d4f7b7b015 (patch) | |
| tree | a9e6ea61d5027f97bfbff6e82b419386dc42edf8 /theme | |
| parent | b5922121d971f92ce05409f3522b8c015952c1ca (diff) | |
| download | cleberg.net-a9add7b78faefed8c55e44d36120a3d4f7b7b015.tar.gz cleberg.net-a9add7b78faefed8c55e44d36120a3d4f7b7b015.tar.bz2 cleberg.net-a9add7b78faefed8c55e44d36120a3d4f7b7b015.zip | |
fix body padding and footer margin on small screens
Diffstat (limited to 'theme')
| -rw-r--r-- | theme/static/styles.css | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/theme/static/styles.css b/theme/static/styles.css index d3eda0f..71acb7e 100644 --- a/theme/static/styles.css +++ b/theme/static/styles.css @@ -6,9 +6,12 @@ body { max-width: 50em; } -body, +body { + padding: 1rem; +} + footer { - padding: 1rem 0; + margin: 1rem 0; } nav { |
