-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
53 lines (47 loc) · 884 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
<template>
<Head>
<Title>ТРОПА - Туристический фотобанк</Title>
</Head>
<Header />
<div class="main">
<NuxtPage />
</div>
<Footer />
</template>
<style lang="sass">
@import "@font"
@import "@color"
@import "@mixin"
html, body
flex-direction: column
width: 100%
height: 100%
margin: 0
padding: 0
font-family: "Inter", serif !important
font-size: 30px
font-weight: 400
font-style: normal
line-height: normal
scroll-behavior: smooth
#__nuxt
display: flex
flex-direction: column
width: 100%
height: 100%
.main
@include borderBox
@include transition
position: relative
display: flex
flex-direction: column
flex: 0 0 auto
padding: 90px 100px 80px
align-items: center
.nuxt-icon
vertical-align: baseline !important
margin-bottom: 0
@include mobile
.main
padding: 80px 0 0 0
</style>