From 63ab6e41ac04947b1281f5c5f3a5ccfe342c128b Mon Sep 17 00:00:00 2001 From: sudoer777 <78781902+sudoer777@users.noreply.github.com> Date: Fri, 26 Nov 2021 23:09:05 -0700 Subject: [PATCH] Add link for about page --- public/stylesheets/style.css | 5 +++++ views/layout.pug | 3 +++ 2 files changed, 8 insertions(+) diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css index c4252bd..a3f1d85 100644 --- a/public/stylesheets/style.css +++ b/public/stylesheets/style.css @@ -54,4 +54,9 @@ input { padding: 1em; margin-bottom: 3em; border-radius: .25em; +} + +#about-footer { + margin-top: 3em; + text-align: center; } \ No newline at end of file diff --git a/views/layout.pug b/views/layout.pug index e05e793..04577b9 100644 --- a/views/layout.pug +++ b/views/layout.pug @@ -19,5 +19,8 @@ html button#login-button Log in h1 #{title} block content + div#about-footer + a(href="/about") Help/About + block scripts script(src='/scripts/main.js' type="module")