mirror of
https://codeberg.org/SafeTwitch/safetwitch.git
synced 2024-12-22 13:22:58 -05:00
Fix navbar inconsistencies #67
This commit is contained in:
parent
8c78994985
commit
d66e884d0a
1 changed files with 3 additions and 3 deletions
|
@ -32,16 +32,16 @@ export default {
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<search-bar class="mt-4 mr-4 hidden sm:inline-block sm:mt-0"></search-bar>
|
<search-bar class="mt-4 mr-4 hidden md:inline-block sm:mt-0"></search-bar>
|
||||||
|
|
||||||
<div class="text-contrast hidden space-x-4 sm:block">
|
<div class="text-contrast hidden space-x-4 md:block">
|
||||||
<a href="https://codeberg.org/dragongoose/safetwitch" target="_blank">{{ $t('nav.code') }}</a>
|
<a href="https://codeberg.org/dragongoose/safetwitch" target="_blank">{{ $t('nav.code') }}</a>
|
||||||
<a :href="'https://twitch.tv' + $route.fullPath">Twitch</a>
|
<a :href="'https://twitch.tv' + $route.fullPath">Twitch</a>
|
||||||
<router-link to="/privacy">{{ $t('nav.privacy') }}</router-link>
|
<router-link to="/privacy">{{ $t('nav.privacy') }}</router-link>
|
||||||
<router-link to="/settings">{{ $t('nav.settings') }}</router-link>
|
<router-link to="/settings">{{ $t('nav.settings') }}</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="block sm:hidden">
|
<div class="block md:hidden">
|
||||||
<button @click="toggle" class="flex items-center px-3 py-2">
|
<button @click="toggle" class="flex items-center px-3 py-2">
|
||||||
<svg class="fill-current h-3 w-3" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
<svg class="fill-current h-3 w-3" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
||||||
<title>Menu</title>
|
<title>Menu</title>
|
||||||
|
|
Loading…
Reference in a new issue