Add search form submit #32 #45

Merged
jakob.scheid merged 20 commits from feature/search-form-submit into main 2026-05-14 11:29:19 +02:00
2 changed files with 11 additions and 1 deletions
Showing only changes of commit 1097694a8e - Show all commits
+2
View File
@@ -16,7 +16,9 @@ limitations under the License.
<template> <template>
<nav class="global-nav"> <nav class="global-nav">
<RouterLink to="/" class="link button link">
<span id="logo">Seekra</span> <span id="logo">Seekra</span>
</RouterLink>
<ul class="right-links"> <ul class="right-links">
</ul> </ul>
</nav> </nav>
+8
View File
@@ -24,3 +24,11 @@ body {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
.link {
text-decoration: none;
}
.link:hover:not(.button-link) {
text-decoration: underline;
}