Skip to content

Commit aa3b7d5

Browse files
committed
🔧 [init] : 폴더 정리, 폰트 적용
1 parent 26b8e9e commit aa3b7d5

File tree

15 files changed

+16
-507
lines changed

15 files changed

+16
-507
lines changed

.prettierrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"semi": false,
44
"singleQuote": true,
55
"printWidth": 100,
6+
"tabWidth": 2,
67
"singleAttributePerLine": true,
78
"bracketSameLine": true,
89
"trailingComma": "none",

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<link rel="icon" href="/favicon.ico">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>Vite App</title>
7+
<title>TaskFlow</title>
88
</head>
99
<body>
1010
<div id="app"></div>

src/App.vue

Lines changed: 0 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,10 @@
11
<script setup lang="ts">
22
import { RouterLink, RouterView } from 'vue-router'
3-
import HelloWorld from './components/HelloWorld.vue'
43
</script>
54

65
<template>
76
<header>
8-
<img
9-
alt="Vue logo"
10-
class="logo"
11-
src="@/assets/logo.svg"
12-
width="125"
13-
height="125" />
14-
157
<div class="wrapper">
16-
<HelloWorld msg="You did it!" />
17-
188
<nav>
199
<RouterLink to="/">Home</RouterLink>
2010
<RouterLink to="/about">About</RouterLink>
@@ -26,41 +16,6 @@ import HelloWorld from './components/HelloWorld.vue'
2616
</template>
2717

2818
<style scoped>
29-
header {
30-
line-height: 1.5;
31-
max-height: 100vh;
32-
}
33-
34-
.logo {
35-
display: block;
36-
margin: 0 auto 2rem;
37-
}
38-
39-
nav {
40-
width: 100%;
41-
font-size: 12px;
42-
text-align: center;
43-
margin-top: 2rem;
44-
}
45-
46-
nav a.router-link-exact-active {
47-
color: var(--color-text);
48-
}
49-
50-
nav a.router-link-exact-active:hover {
51-
background-color: transparent;
52-
}
53-
54-
nav a {
55-
display: inline-block;
56-
padding: 0 1rem;
57-
border-left: 1px solid var(--color-border);
58-
}
59-
60-
nav a:first-of-type {
61-
border: 0;
62-
}
63-
6419
@media (min-width: 1024px) {
6520
header {
6621
display: flex;
@@ -71,20 +26,5 @@ nav a:first-of-type {
7126
.logo {
7227
margin: 0 2rem 0 0;
7328
}
74-
75-
header .wrapper {
76-
display: flex;
77-
place-items: flex-start;
78-
flex-wrap: wrap;
79-
}
80-
81-
nav {
82-
text-align: left;
83-
margin-left: -1rem;
84-
font-size: 1rem;
85-
86-
padding: 1rem 0;
87-
margin-top: 1rem;
88-
}
8929
}
9030
</style>

src/assets/base.css

Lines changed: 0 additions & 86 deletions
This file was deleted.

src/assets/fonts/SUIT-Variable.ttf

1.35 MB
Binary file not shown.

src/assets/logo.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/assets/main.css

Lines changed: 0 additions & 35 deletions
This file was deleted.

src/components/HelloWorld.vue

Lines changed: 0 additions & 52 deletions
This file was deleted.

src/components/TestWorld.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ defineProps<{
55
</script>
66

77
<template>
8-
<div class="bg-black text-xl">{{ msg }}</div>
8+
<div class="bg-red-2 text-xl h-screen">{{ msg }}</div>
99
</template>

0 commit comments

Comments
 (0)