From bcca324485e604c360910fc488cb1b810f9b82e9 Mon Sep 17 00:00:00 2001 From: Henrik Askjer <henrik.askjer@uib.no> Date: Tue, 25 Jan 2022 11:49:01 +0100 Subject: [PATCH] remove banner href --- src/App.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/App.vue b/src/App.vue index fceb3aea..e819d3a7 100644 --- a/src/App.vue +++ b/src/App.vue @@ -37,8 +37,8 @@ <div class = "banner" aria-hidden="true" :class="$vuetify.breakpoint"> <div> - <h1 tabindex="-1"><a :class="$vuetify.breakpoint.name" href="/">Ordbøkene</a></h1> - <p tabindex="-1" class="sub-title"><a href="/">{{$t("sub_title")}}</a></p> + <h1 :class="$vuetify.breakpoint.name">Ordbøkene</h1> + <p class="sub-title">{{$t("sub_title")}}</p> </div> </div> @@ -125,11 +125,11 @@ h1 { color: var(--v-primary-base) } -.banner h1 a { +.banner h1 { font-size: 48px; } -h1 > a.xs, h1 > a.sm { +h1.xs, h1.sm { font-size: 36px; } @@ -202,7 +202,7 @@ footer a { } -.sub-title a { +.sub-title { color: var(--v-primary-base) !important; } -- GitLab