diff --git a/components/footer/Footer.vue b/components/footer/Footer.vue
index 0ab70c32e7896403e9aec8196a6021e9537722d0..e537e6b4789e4609639de9d332c532b6844e05db 100644
--- a/components/footer/Footer.vue
+++ b/components/footer/Footer.vue
@@ -1,7 +1,5 @@
 <template>
-  <v-footer app>
-    <span>&copy; {{ new Date().getFullYear() }}</span>
-  </v-footer>
+  <div>Footer!</div>
 </template>
 
 <script>
diff --git a/components/report_cards/shared/EntityReportCard.vue b/components/report_cards/shared/EntityReportCard.vue
index 25b03181399d0f56bae6b993f43dbd1e744adfa0..58a5dac56a925259d667d593f3900e0f8af1e39e 100644
--- a/components/report_cards/shared/EntityReportCard.vue
+++ b/components/report_cards/shared/EntityReportCard.vue
@@ -1,7 +1,7 @@
 <template>
   <v-container>
     <v-row>
-      <v-col cols="11" md="9">
+      <v-col cols="12" md="9">
         <h1 class="primary--text">{{ reportCardStructure.title }}</h1>
         <v-divider />
         <br />
@@ -15,7 +15,7 @@
           <v-divider />
         </div>
       </v-col>
-      <v-col cols="1" md="3">
+      <v-col cols="0" md="3">
         <Navigator :report-card-structure="reportCardStructure" />
       </v-col>
     </v-row>
diff --git a/components/report_cards/shared/ReportCardSection.vue b/components/report_cards/shared/ReportCardSection.vue
index 545b0d3f4a7eeb5b1033230f510b627ca79b4403..ea3eaf2bb47b1e6a88ae51f79ebe40360f5b500c 100644
--- a/components/report_cards/shared/ReportCardSection.vue
+++ b/components/report_cards/shared/ReportCardSection.vue
@@ -1,13 +1,16 @@
 <template>
-  <div :id="sectionDescription.id">
+  <div :id="sectionDescription.id" class="report-card-section">
     <v-row>
       <v-col cols="12">
-        <div class="d-flex">
-          <a :href="`#${sectionDescription.id}`">
-            <v-icon>mdi-link</v-icon>
-          </a>
+        <a
+          :href="`#${sectionDescription.id}`"
+          class="d-flex section-title-link"
+          @mouseover="showLinkIcon = true"
+          @mouseout="showLinkIcon = false"
+        >
           <h2 class="primary--text">{{ sectionDescription.title }}</h2>
-        </div>
+          <v-icon v-show="showLinkIcon">mdi-link</v-icon>
+        </a>
       </v-col>
     </v-row>
 
@@ -27,7 +30,26 @@ export default {
       default: () => {},
     },
   },
+  data() {
+    return {
+      showLinkIcon: false,
+    }
+  },
 }
 </script>
 
-<style></style>
+<style lang="scss">
+.report-card-section {
+  .section-title-link {
+    text-decoration: none;
+  }
+  &::before {
+    display: block;
+    content: ' ';
+    margin-top: -68px;
+    height: 68px;
+    visibility: hidden;
+    pointer-events: none;
+  }
+}
+</style>
diff --git a/web-components-submodule b/web-components-submodule
index 8cb7155b29bc9d533d0704f794718ad37a160a31..4a1c5882ae02999a91bf698fb9ee6625e5262528 160000
--- a/web-components-submodule
+++ b/web-components-submodule
@@ -1 +1 @@
-Subproject commit 8cb7155b29bc9d533d0704f794718ad37a160a31
+Subproject commit 4a1c5882ae02999a91bf698fb9ee6625e5262528