You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
804 B
Vue

<template>
<b-row class="mb-5-menu">
<b-navbar fixed=top>
<b-navbar-toggle target="nav-collapse"></b-navbar-toggle>
<b-collapse id="nav-collapse" is-nav>
<b-nav align="right">
<b-nav-item to='/'>Home</b-nav-item>
<b-nav-item to='/about'>About</b-nav-item>
<b-nav-item to='/editornote'>Editor's note</b-nav-item>
</b-nav>
</b-collapse>
</b-navbar>
</b-row>
</template>
<script>
export default {
name: 'MenuBar',
}
</script>
<style scoped>
@import url('https://fonts.googleapis.com/css?family=Inconsolata&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
* {
max-width: 100%;
}
a {
color: #333042;
font-family: 'Permanent Marker', cursive;
}
a:hover {
color: #ff4c2b;
}
</style>