Use Remix icons and set up navbar properly
Too lazy to separate these changes into multiple commits.
This commit is contained in:
parent
14e85207e9
commit
1b94d5573c
4 changed files with 591 additions and 966 deletions
19
gdn-app/src/components/Navbar.vue
Normal file
19
gdn-app/src/components/Navbar.vue
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<script setup lang="ts">
|
||||
import { RiArrowDropDownLine, RiSettings3Fill } from "@remixicon/vue";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="flex justify-between bg-black p-2 text-white">
|
||||
<div
|
||||
class="cursor-default rounded-md bg-neutral-800 pl-2 text-lg hover:bg-neutral-700 active:bg-neutral-500"
|
||||
>
|
||||
GedächtNAS
|
||||
<RiArrowDropDownLine class="inline" />
|
||||
</div>
|
||||
<div
|
||||
class="flex items-center rounded-md bg-neutral-800 px-1 hover:bg-neutral-700 active:bg-neutral-500"
|
||||
>
|
||||
<RiSettings3Fill class="h-4" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue