[+] Create title div

This commit is contained in:
Hykilpikonna
2019-12-22 22:05:02 -05:00
parent 78e08a93e1
commit 15690037df
+24 -16
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; {
-webkit-font-smoothing: antialiased; font-family: 'Avenir', Helvetica, Arial, sans-serif;
-moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased;
text-align: center; -moz-osx-font-smoothing: grayscale;
color: #2c3e50; text-align: center;
margin-top: 60px; color: #2c3e50;
} margin-top: 60px;
}
#title
{
}
</style> </style>