diff options
| author | Autumn <git@autumnfo.rest> | 2026-04-29 21:17:39 +0100 |
|---|---|---|
| committer | Autumn <git@autumnfo.rest> | 2026-04-29 21:17:39 +0100 |
| commit | 78753f94aa7702720cc55d13ea9ba666bc81ad40 (patch) | |
| tree | c7f1efa90090d255236a3aa08c583564d5fcce5c | |
| parent | d228c37a2b36f0009268b08e3e386e94b5852cfc (diff) | |
[pages] add width styling
| -rw-r--r-- | src/pages/_template.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/pages/_template.php b/src/pages/_template.php index 424a4fd..13e697d 100644 --- a/src/pages/_template.php +++ b/src/pages/_template.php @@ -9,6 +9,20 @@ <title><?php print $page_title ?> | autumn's forest</title> + <style> + + html { + display: flex; + justify-content: center; + } + + body { + max-width: 1024px; + width: 100%; + } + + </style> + </head> <body> |
