[+] Create title div
This commit is contained in:
+24
-16
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user