mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 08:10:08 +00:00
Improve interactions
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
55ab9ddf5d
commit
9004ced776
4 changed files with 5 additions and 15 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -11,6 +11,7 @@ hugo_*
|
|||
.hugo_build.lock
|
||||
node_modules
|
||||
.rendered-docs
|
||||
src/components/_template.vue
|
||||
storage.db
|
||||
storage.db-journal
|
||||
storage.json.gz
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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 }}
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
<template>
|
||||
<!---->
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'TwitchBotEditor...',
|
||||
})
|
||||
</script>
|
Loading…
Reference in a new issue