-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
55 lines (47 loc) · 808 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
<template>
<div class="main-container">
<div class="nuxt-wrapper">
<NuxtPage />
</div>
<footer>
<img src="./assets/images/footer.png" />
</footer>
</div>
</template>
<script setup lang="ts">
useHead({
htmlAttrs: {
lang: "en",
},
});
</script>
<style lang="scss">
@import "assets/style/index";
</style>
<style lang="scss" scoped>
@import "assets/style/framework";
.main-container {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
position: relative;
.nuxt-wrapper {
z-index: 1;
padding: 3em 2em;
max-width: 1100px;
flex-grow: 1;
@include screen(sm) {
padding: 3em 1em;
}
}
}
footer {
margin-top: -20vw;
position: relative;
img {
width: 100vw;
opacity: 0.5;
}
}
</style>