[+] Create title div

This commit is contained in:
Hykilpikonna
2019-12-22 22:05:02 -05:00
parent 78e08a93e1
commit 15690037df
+16 -8
View File
@@ -1,26 +1,34 @@
<template> <template>
<div id="app"> <div id="app">
<img alt="Vue logo" src="./assets/logo.png"> <div id="title">
</div>
</div> </div>
</template> </template>
<script lang="ts"> <script lang="ts">
import {Component, Vue} from 'vue-property-decorator'; import {Component, Vue} from 'vue-property-decorator';
@Component @Component
export default class App extends Vue export default class App extends Vue
{ {
} }
</script> </script>
<style lang="scss"> <style lang="scss">
#app { #app
{
font-family: 'Avenir', Helvetica, Arial, sans-serif; font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
text-align: center; text-align: center;
color: #2c3e50; color: #2c3e50;
margin-top: 60px; margin-top: 60px;
} }
#title
{
}
</style> </style>