-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.vue
75 lines (65 loc) · 1.54 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
67
68
69
70
71
72
73
74
75
<template>
<div>
<NuxtPage />
</div>
</template>
<script setup lang="ts">
useSeoMeta({
title: "국민의힘 단체문자 매크로",
ogTitle: "국민의힘 단체문자 매크로",
description: "국민의힘 의원들에게 우리 같이 윤석열을 탄핵시킬 용기를 불어넣어줘요.",
ogDescription: "국민의힘 의원들에게 우리 같이 윤석열을 탄핵시킬 용기를 불어넣어줘요."
})
</script>
<style lang="scss">
@font-face {
font-family: 'Pretendard';
src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/[email protected]/Pretendard-Regular.woff') format('woff');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Pretendard';
src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/[email protected]/Pretendard-Bold.woff') format('woff');
font-weight: 700;
font-style: normal;
}
* {
font-family: 'Pretendard';
box-sizing: border-box;
color: inherit;
word-break: keep-all;
line-height: 1.5;
}
a {
text-decoration: underline;
}
html {
background: #222222;
color: white;
display: flex;
height: 100%;
justify-content: center;
align-items: center;
body {
display: flex;
width: 100%;
max-width: 500px;
min-height: 100%;
margin: 0;
padding: 2em;
align-items: center;
/* max-height: 1000px; */
>div#__nuxt {
display: flex;
width: 100%;
height: 100%;
>div {
display: flex;
width: 100%;
height: 100%;
}
}
}
}
</style>