diff options
| author | Henry Jameson <me@hjkos.com> | 2024-02-27 17:03:39 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2024-02-27 17:03:39 +0200 |
| commit | c83ddb0b2b824fb3c0e3bb596552e98c162c78d3 (patch) | |
| tree | 8b877ba3d3bcaa398b5d4050d0ff74e00f8d5932 /src/components/navigation | |
| parent | d3b5f76486373f658a2802b5b9ab7628ebc862fb (diff) | |
better v1 detection, better menu-item consistency
Diffstat (limited to 'src/components/navigation')
| -rw-r--r-- | src/components/navigation/navigation_entry.vue | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/components/navigation/navigation_entry.vue b/src/components/navigation/navigation_entry.vue index 1189f76d..ac4a0c47 100644 --- a/src/components/navigation/navigation_entry.vue +++ b/src/components/navigation/navigation_entry.vue @@ -10,7 +10,7 @@ > <component :is="routeTo ? 'a' : 'button'" - class="main-link button-unstyled" + class="main-link" :href="href" @click="navigate" > @@ -84,11 +84,23 @@ } .main-link { + background: none; + border: none; + outline: none; + display: inline; + text-align: initial; + font-size: 100%; + font-family: inherit; + line-height: unset; + cursor: pointer; + box-sizing: content-box; + color: var(--text); flex: 1; padding: 0 1em; } .menu-icon { + color: var(--icon); margin-right: 0.8em; } |
