From 713dcb54a43663681e20f1d133ccf2906cea2f14 Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Tue, 6 Feb 2024 11:07:13 +0100 Subject: [PATCH] feat(css): add layout.css --- src/stylesheets/layout.css | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/stylesheets/layout.css diff --git a/src/stylesheets/layout.css b/src/stylesheets/layout.css new file mode 100644 index 0000000..0b1f6a0 --- /dev/null +++ b/src/stylesheets/layout.css @@ -0,0 +1,4 @@ +body { + display: grid; + grid-template-rows: auto 1fr auto; +}