-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.vue
58 lines (50 loc) · 986 Bytes
/
App.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<template>
<div id="app">
<main>
<menu-component></menu-component>
<div class="wrapper">
<router-view></router-view>
</div>
</main>
</div>
</template>
<script>
import menuComponent from './components/menu/Menu'
export default {
name: 'app',
components: {
'menu-component': menuComponent
}
}
</script>
<style lang="stylus">
body
margin: 0;
background-color: #2d313d !important;
height: 100vh;
.wrapper{
padding-top 68px
}
#app
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
main
text-align: center;
header
margin: 0;
height: 56px;
padding: 0 16px 0 24px;
background-color: #eb6e8a;
color: #fff;
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>