summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Charrier <max@puffer.fish>2025-04-21 19:42:13 +0200
committerMax Charrier <max@puffer.fish>2025-04-21 19:42:55 +0200
commitfdbe6bf12de5e3be23a4ddcf85b441de6dde85a5 (patch)
treee834f234443ee2f4fdc0fac3d4f70a6a33588947
parent96e80872043eaa86b6d7a26858ffcbad3692fed2 (diff)
Fix page padding
Footer was stuck to the edge. Signed-off-by: Max Charrier <max@puffer.fish>
-rw-r--r--stylesheet.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/stylesheet.css b/stylesheet.css
index 33da4e7..3610f90 100644
--- a/stylesheet.css
+++ b/stylesheet.css
@@ -2,7 +2,7 @@ body {
background-color: #f1e9df;
width: 960px;
margin: 0 auto;
- padding-top: 60px;
+ padding: 60px 0 60px 0;
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 60px;