trusted-setup-server/components/Navbar.vue
Danil Kovtonyuk 798fb614fc add download link to navbar
-decrease title size on mobile
-increase padding between navbar items
2020-02-09 01:18:00 +10:00

28 lines
543 B
Vue

<template>
<b-navbar wrapper-class="container" class="header">
<template slot="brand">
<b-navbar-item :to="{ path: '/' }" tag="router-link">
<Logo />
</b-navbar-item>
</template>
<template slot="end">
<b-navbar-item href="#">
Instructions
</b-navbar-item>
<b-navbar-item href="#">
Download contributions
</b-navbar-item>
</template>
</b-navbar>
</template>
<script>
import Logo from '@/components/Logo'
export default {
components: {
Logo
}
}
</script>