Skip to content

Instantly share code, notes, and snippets.

@nanotroy
Created August 28, 2019 15:56
Show Gist options
  • Save nanotroy/ada773eadf7740ccd62660f5c9fd834a to your computer and use it in GitHub Desktop.
Save nanotroy/ada773eadf7740ccd62660f5c9fd834a to your computer and use it in GitHub Desktop.
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: "app",
data: () => {
return {
showNavigation: false
};
}
};
</script>
<style>
.center {
text-align: center;
}
form {
width: 95vw;
margin: 0 auto;
}
.md-toolbar.md-theme-default {
background: #009688 !important;
height: 60px;
}
.md-title,
.md-toolbar.md-theme-default .md-icon {
color: #fff !important;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment