mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
Improve interactions
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
8cacdc0c9c
commit
c1245c541e
4 changed files with 5 additions and 15 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -11,6 +11,7 @@ hugo_*
|
||||||
.hugo_build.lock
|
.hugo_build.lock
|
||||||
node_modules
|
node_modules
|
||||||
.rendered-docs
|
.rendered-docs
|
||||||
|
src/components/_template.vue
|
||||||
storage.db
|
storage.db
|
||||||
storage.db-journal
|
storage.db-journal
|
||||||
storage.json.gz
|
storage.json.gz
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<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">
|
<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" />
|
<i class="fas fa-robot fa-fw me-1 text-info" />
|
||||||
Twitch-Bot
|
Twitch-Bot
|
||||||
</span>
|
</span>
|
||||||
|
|
|
@ -4,14 +4,14 @@
|
||||||
v-for="section in navigation"
|
v-for="section in navigation"
|
||||||
:key="section.header"
|
:key="section.header"
|
||||||
>
|
>
|
||||||
<div class="navHeading">
|
<div class="navHeading user-select-none">
|
||||||
{{ section.header }}
|
{{ section.header }}
|
||||||
</div>
|
</div>
|
||||||
<RouterLink
|
<RouterLink
|
||||||
v-for="link in section.links"
|
v-for="link in section.links"
|
||||||
:key="link.target"
|
:key="link.target"
|
||||||
:to="{name: link.target}"
|
:to="{name: link.target}"
|
||||||
class="nav-link"
|
class="nav-link user-select-none"
|
||||||
>
|
>
|
||||||
<i :class="`${link.icon} fa-fw me-1`" />
|
<i :class="`${link.icon} fa-fw me-1`" />
|
||||||
{{ link.name }}
|
{{ 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