Implements the breadcrumbs home link

This commit is contained in:
Michael Weimann
2018-12-05 04:56:03 +01:00
parent a4dbb31b8c
commit 8c94da81f1

View File

@@ -1,5 +1,5 @@
<!-- <!--
* @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net> * @copyright Copyright (c) 2018 Michael Weimann <mail@michael-weimann.eu>
* *
* @author Michael Weimann <mail@michael-weimann.eu> * @author Michael Weimann <mail@michael-weimann.eu>
* *
@@ -22,8 +22,15 @@
<template> <template>
<div> <div class="controls">
<div id="app-navigation-toggle-custom" class="icon-menu" v-on:click="toggleNav" /> <div id="app-navigation-toggle-custom" class="icon-menu" v-on:click="toggleNav" />
<div class="breadcrumb">
<div class="crumb svg last">
<router-link to="/boards" class="icon-home" title="All Boards">
<span class="hidden-visually">All Boards</span>
</router-link>
</div>
</div>
</div> </div>
</template> </template>
@@ -41,4 +48,12 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.controls {
display: flex;
}
#app-navigation-toggle-custom {
position: static;
}
</style> </style>