-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.vue
94 lines (82 loc) · 1.51 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<template>
<div class="app-container">
<GnbGlobal/>
<div class="divider"></div>
<main class="main-content">
<NuxtPage />
</main>
</div>
</template>
<script setup>
// 필요한 경우 여기에 스크립트를 추가하세요
import GnbGlobal from "~/pages/gnb/GnbGlobal.vue";
</script>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: var(--colors-shadeWhite, #1D2B39);
color: var(--colors-shadeBlack, #ffffff);
}
.app-container {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.gnb {
background-color: var(--colors-shadeWhite, #1D2B39);
color: var(--colors-shadeBlack, #ffffff);
height: 64px;
width: 100%;
z-index: 6;
}
.gnb-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
height: 100%;
}
.logo {
display: flex;
align-items: center;
}
.logo-image {
height: 35px;
width: auto;
}
.nav-menu ul {
display: flex;
list-style-type: none;
margin: 0;
padding: 0;
}
.nav-menu li {
margin-left: 20px;
}
.nav-link {
color: var(--colors-shadeBlack, #ffffff);
text-decoration: none;
font-size: 16px;
font-weight: 500;
transition: color 0.2s ease;
}
.nav-link:hover {
color: var(--colors-polyBlue, #2D9CDB);
}
.main-content {
flex-grow: 1;
padding: 20px;
max-width: 1200px;
margin: 0 auto;
width: 100%;
}
.divider {
height: 1px;
background-color: rgba(255, 255, 255, 0.1);
width: 100%;
}
</style>