diff options
author | Adam Carpenter <atc@53hor.net> | 2020-04-21 21:04:33 -0400 |
---|---|---|
committer | Adam Carpenter <atc@53hor.net> | 2020-04-21 21:04:33 -0400 |
commit | 6b7744a16c7bf321fb2874b54d49e3b954f618fa (patch) | |
tree | 6c705f888ed82441bf49b6ec93438b8e2acbf76a /iridescence/src/App.vue | |
download | theglassyladies-6b7744a16c7bf321fb2874b54d49e3b954f618fa.tar.xz theglassyladies-6b7744a16c7bf321fb2874b54d49e3b954f618fa.zip |
init
Diffstat (limited to 'iridescence/src/App.vue')
-rw-r--r-- | iridescence/src/App.vue | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/iridescence/src/App.vue b/iridescence/src/App.vue new file mode 100644 index 0000000..0228dd3 --- /dev/null +++ b/iridescence/src/App.vue @@ -0,0 +1,32 @@ +<template> + <div id="app"> + <div id="nav"> + <router-link to="/">Home</router-link> | + <router-link to="/about">About</router-link> + </div> + <router-view /> + </div> +</template> + +<style lang="scss"> +#app { + font-family: Avenir, Helvetica, Arial, sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-align: center; + color: #2c3e50; +} + +#nav { + padding: 30px; + + a { + font-weight: bold; + color: #2c3e50; + + &.router-link-exact-active { + color: #42b983; + } + } +} +</style> |