0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2024-12-22 05:12:57 -05:00

Add following tab to navbar

This commit is contained in:
dragongoose 2023-12-01 17:33:43 -05:00
parent 53ab770576
commit 072fdac5d2
No known key found for this signature in database
GPG key ID: 01397EEC371CDAA5
2 changed files with 3 additions and 1 deletions

View file

@ -38,6 +38,7 @@ export default {
<a href="https://codeberg.org/safetwitch/safetwitch" target="_blank">{{ $t('nav.code') }}</a>
<a :href="'https://twitch.tv' + $route.fullPath">Twitch</a>
<router-link to="/privacy">{{ $t('nav.privacy') }}</router-link>
<router-link to="/following">{{ $t('home.following') }}</router-link>
<router-link to="/settings">{{ $t('nav.settings') }}</router-link>
</div>
@ -61,6 +62,7 @@ export default {
<a href="https://codeberg.org/dragongoose/safetwitch">{{ $t('nav.code') }}</a>
<a :href="'https://twitch.tv' + $route.fullPath">Twitch</a>
<router-link to="/privacy">{{ $t('nav.privacy') }}</router-link>
<router-link to="/following">{{ $t('home.following') }}</router-link>
<router-link to="/settings">{{ $t('nav.settings') }}</router-link>
</ul>
</div>

View file

@ -25,7 +25,7 @@ export default {
:placeholder="$t('main.search')"
v-model="searchInput"
@keyup.enter="redirectToSearch"
class="rounded-md p-1 pl-8 text-black bg-white placeholder:text-black"
class="rounded-md p-1 pl-8 w-56 text-black bg-white placeholder:text-black"
/>
</div>
</template>