Improve interactions

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2024-06-14 22:50:39 +02:00
parent 55ab9ddf5d
commit 9004ced776
Signed by: luzifer
SSH Key Fingerprint: SHA256:/xtE5lCgiRDQr8SLxHMS92ZBlACmATUmF1crK16Ks4E
4 changed files with 5 additions and 15 deletions

1
.gitignore vendored
View File

@ -11,6 +11,7 @@ hugo_*
.hugo_build.lock
node_modules
.rendered-docs
src/components/_template.vue
storage.db
storage.db-journal
storage.json.gz

View File

@ -1,7 +1,7 @@
<template>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<nav class="navbar navbar-expand-lg bg-body-tertiary user-select-none">
<div class="container-fluid">
<span class="navbar-brand">
<span class="navbar-brand user-select-none">
<i class="fas fa-robot fa-fw me-1 text-info" />
Twitch-Bot
</span>

View File

@ -4,14 +4,14 @@
v-for="section in navigation"
:key="section.header"
>
<div class="navHeading">
<div class="navHeading user-select-none">
{{ section.header }}
</div>
<RouterLink
v-for="link in section.links"
:key="link.target"
:to="{name: link.target}"
class="nav-link"
class="nav-link user-select-none"
>
<i :class="`${link.icon} fa-fw me-1`" />
{{ link.name }}

View File

@ -1,11 +0,0 @@
<template>
<!---->
</template>
<script lang="ts">
import { defineComponent } from 'vue'
export default defineComponent({
name: 'TwitchBotEditor...',
})
</script>