Skip to content

Commit

Permalink
Improve interactions
Browse files Browse the repository at this point in the history
Signed-off-by: Knut Ahlers <knut@ahlers.me>
  • Loading branch information
Luzifer committed Jun 14, 2024
1 parent 1c06d7e commit e24657a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ hugo_*
.hugo_build.lock
node_modules
.rendered-docs
src/components/_template.vue
storage.db
storage.db-journal
storage.json.gz
Expand Down
4 changes: 2 additions & 2 deletions src/components/_headNav.vue
Original file line number Diff line number Diff line change
@@ -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>
Expand Down
4 changes: 2 additions & 2 deletions src/components/_sideNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
11 changes: 0 additions & 11 deletions src/components/_template.vue

This file was deleted.

0 comments on commit e24657a

Please sign in to comment.