-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathApp.vue
59 lines (51 loc) · 910 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
59
<template>
<div id="app">
<app-nav />
<app-masthead />
<app-bottom-drawer />
</div>
</template>
<script>
import AppBottomDrawer from "./components/AppBottomDrawer.vue";
import AppMasthead from "./components/AppMasthead.vue";
import AppNav from "./components/AppNav.vue";
export default {
components: {
AppNav,
AppMasthead,
AppBottomDrawer
}
};
</script>
<style lang="scss">
#app {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Whitney A", "Whitney B";
font-style: normal;
font-weight: 400;
}
body {
margin: 0;
padding: 0;
max-width: 100% !important;
overflow-x: hidden !important;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
label {
display: inline-block;
margin-top: 5px;
}
.ant-row {
margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
label {
font-size: 14px;
}
}
</style>