From 1bc0132a9cd008ea69d16be2049aca07d5abc3ed Mon Sep 17 00:00:00 2001
From: Chris Dill <chris.rj.dill@gmail.com>
Date: Tue, 16 Feb 2021 21:58:10 +0000
Subject: [PATCH] Another minor change

---
 src/routes/policy.svelte | 2 +-
 static/css/global.css    | 8 ++++++--
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/src/routes/policy.svelte b/src/routes/policy.svelte
index bf6f80e..85395e6 100755
--- a/src/routes/policy.svelte
+++ b/src/routes/policy.svelte
@@ -10,7 +10,7 @@
 
 <main class="container">
     <section>
-        <p>This policy was last updated <b>9/02/2021.</b></p>
+        <p>Last updated: <b>16/02/2021</b></p>
 
         <p>Quartznet operates <b>https://www.quartznet.info</b> (the "site"). This page informs you of our policies regarding the collection, use and disclosure of personal information we receive from users of the site.</p>
 
diff --git a/static/css/global.css b/static/css/global.css
index 7df8dc1..993d212 100755
--- a/static/css/global.css
+++ b/static/css/global.css
@@ -34,12 +34,14 @@ body {
 h1, h2, h3, h4, h5 {
   color: var(--headings-color);
   font-weight: bold;
+  line-height: 1.2;
 }
 
 hr {
   background-color: var(--line-color);
 }
 
+/* Navigation */
 header {
   background-color: var(--background-color);
 }
@@ -55,15 +57,17 @@ nav {
 
 nav li {
   font-size: 1rem;
-  padding: 2px 8px;
+  font-weight: bold;
+  padding: 3px 10px;
   text-align: center;
 }
 
+/* Link effects */
 nav li a {
   text-decoration: none;
 }
 
-li a:hover {
+nav li a:hover {
   border-bottom: 2px solid var(--line-color);
   text-decoration: none;
 }