-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.vue
66 lines (59 loc) · 1.02 KB
/
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
60
61
62
63
64
65
66
<template>
<client-only>
<notifications
position="top center"
:ignore-duplicates="true"
:pause-on-hover="true"
/>
</client-only>
<header>
<nuxt-img
alt="Baktz logo"
id="header-baktz-img"
src="baktz-logo.svg"
style="aspect-ratio: 361/127"
/>
<a href="https://twitter.com/realbaktz">
<nuxt-img
alt="Twitter logo"
id="header-twitter-img"
src="twitter-brands.svg"
style="aspect-ratio: 16/13"
/>
</a>
</header>
<main>
<section-home />
<section-features />
<section-about />
</main>
</template>
<script lang="ts" setup></script>
<style lang="scss" scoped>
@import 'assets/styles/variables';
@import 'include-media';
header {
max-width: $max-content-width;
margin: 0 auto;
}
main {
max-width: $max-content-width;
margin: 0 auto;
& > * {
padding: 30px;
}
}
img {
margin: clamp(15px, 2vw, 200px);
}
#header-baktz-img {
height: 35px;
@include media('>=tablet') {
height: clamp(30px, 5vw, 100px);
}
}
#header-twitter-img {
height: 30px;
float: right;
}
</style>