This repository has been archived on 2019-03-23. You can view files and clone it, but cannot push or open issues/pull-requests.
binauralbeats/src/App.vue

23 lines
232 B
Vue
Raw Normal View History

2018-02-21 20:07:24 +01:00
<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
export default {
name: 'App'
}
</script>
<style>
#app {
2018-02-21 23:09:36 +01:00
font-family: sans-serif;
}
body {
background-color: #fdf6e3;
color: #839496;
2018-02-21 20:07:24 +01:00
}
</style>