Skip to content

Commit

Permalink
App.vue content changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tzmanics committed Apr 10, 2018
1 parent 2699ceb commit 010b5a1
Showing 1 changed file with 5 additions and 43 deletions.
48 changes: 5 additions & 43 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,59 +1,21 @@
<template>
<div id="app">
<header>
<span>Vue.js PWA</span>
</header>
<main>
<img src="./assets/logo.png" alt="Vue.js PWA">
<hello></hello>
</main>
<h1> EIV </h1>
<h4> emotions in view </h4>
<emotion-input></emotion-input>
</div>
</template>

<script>
import Hello from './components/Hello'
import EmotionInput from './components/EmotionInput'
export default {
name: 'app',
components: {
Hello
EmotionInput
}
}
</script>

<style>
body {
margin: 0;
}
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
}
main {
text-align: center;
margin-top: 40px;
}
header {
margin: 0;
height: 56px;
padding: 0 16px 0 24px;
background-color: #35495E;
color: #ffffff;
}
header span {
display: block;
position: relative;
font-size: 20px;
line-height: 1;
letter-spacing: .02em;
font-weight: 400;
box-sizing: border-box;
padding-top: 16px;
}
</style>

0 comments on commit 010b5a1

Please sign in to comment.