mirror of
https://github.com/tornadocash/trusted-setup-server.git
synced 2024-11-22 09:56:53 +01:00
798fb614fc
-decrease title size on mobile -increase padding between navbar items
28 lines
543 B
Vue
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>
|