diff --git a/components/report_cards/shared/EntityReportCard.vue b/components/report_cards/shared/EntityReportCard.vue
index 960946c7de32f3fcd75f315cecaad3b41acd3a44..25b03181399d0f56bae6b993f43dbd1e744adfa0 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="9">
+      <v-col cols="11" md="9">
         <h1 class="primary--text">{{ reportCardStructure.title }}</h1>
         <v-divider />
         <br />
@@ -15,7 +15,7 @@
           <v-divider />
         </div>
       </v-col>
-      <v-col cols="3">
+      <v-col cols="1" 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 e27e1678563a609302afb49fdf7907d7d1ebef18..545b0d3f4a7eeb5b1033230f510b627ca79b4403 100644
--- a/components/report_cards/shared/ReportCardSection.vue
+++ b/components/report_cards/shared/ReportCardSection.vue
@@ -1,8 +1,13 @@
 <template>
-  <div>
+  <div :id="sectionDescription.id">
     <v-row>
       <v-col cols="12">
-        <h2 class="primary--text">{{ sectionDescription.title }}</h2>
+        <div class="d-flex">
+          <a :href="`#${sectionDescription.id}`">
+            <v-icon>mdi-link</v-icon>
+          </a>
+          <h2 class="primary--text">{{ sectionDescription.title }}</h2>
+        </div>
       </v-col>
     </v-row>
 
diff --git a/store/utils.js b/store/utils.js
new file mode 100644
index 0000000000000000000000000000000000000000..65a6c30f7f14f2e336afb93279bac43853d3aec4
--- /dev/null
+++ b/store/utils.js
@@ -0,0 +1,3 @@
+import utils from '~/web-components-submodule/store/utils.js'
+
+export default utils
diff --git a/web-components-submodule b/web-components-submodule
index 385fa6dc5344d239c49b48aef959bd6c1df2ff77..8cb7155b29bc9d533d0704f794718ad37a160a31 160000
--- a/web-components-submodule
+++ b/web-components-submodule
@@ -1 +1 @@
-Subproject commit 385fa6dc5344d239c49b48aef959bd6c1df2ff77
+Subproject commit 8cb7155b29bc9d533d0704f794718ad37a160a31