Remove unused Navbar component

This commit is contained in:
Oliver Traber 2021-11-15 18:26:30 +01:00
parent 18265ded81
commit 64357ac2b7
Signed by: Bluemedia
GPG key ID: C7BA47275B086E2C

View file

@ -1,23 +0,0 @@
<template>
<div class="navbar">
<router-link to="/">Home</router-link>
</div>
</template>
<script>
export default {
name: "Navbar",
};
</script>
<style scoped>
.navbar {
height: 50px;
display: flex;
justify-content: left;
flex-wrap: nowrap;
overflow: hidden;
background-color: #fafafc;
box-shadow: 0 1px 6px 0 #888;
}
</style>