이태화

readme

...@@ -7,3 +7,5 @@ start with "npm run start" ...@@ -7,3 +7,5 @@ start with "npm run start"
7 ## to build frontend 7 ## to build frontend
8 starting point = /frontend-builder 8 starting point = /frontend-builder
9 start with "npm run build" 9 start with "npm run build"
10 +
11 +## 공지사항을 모아서 보여주는 사이트입니다.
...\ No newline at end of file ...\ No newline at end of file
......
1 <template> 1 <template>
2 <header> 2 <header>
3 - 3 + <div class = 'logo'></div>
4 </header> 4 </header>
5 </template> 5 </template>
6 6
...@@ -9,7 +9,6 @@ export default { ...@@ -9,7 +9,6 @@ export default {
9 name: 'header', 9 name: 'header',
10 data () { 10 data () {
11 return { 11 return {
12 -
13 } 12 }
14 } 13 }
15 } 14 }
...@@ -20,4 +19,8 @@ export default { ...@@ -20,4 +19,8 @@ export default {
20 height: 443px; 19 height: 443px;
21 background:linear-gradient(131deg,rgb(247,183,66),rgb(252,74,66)); 20 background:linear-gradient(131deg,rgb(247,183,66),rgb(252,74,66));
22 } 21 }
22 + .logo{
23 + background:url(../assets/khlogo.png);
24 + display: block;
25 + }
23 </style> 26 </style>
......
...@@ -67,13 +67,14 @@ export default { ...@@ -67,13 +67,14 @@ export default {
67 </script> 67 </script>
68 68
69 <style> 69 <style>
70 - .imfoList{ 70 + .noticeList{
71 - width: 800px; 71 + width: 1010px;
72 - background: grey; 72 + background: rgb(249,249,249);
73 } 73 }
74 ul{ 74 ul{
75 display: flex; 75 display: flex;
76 flex-direction: column; 76 flex-direction: column;
77 + align-items: center;
77 margin: 0 auto 10px auto; 78 margin: 0 auto 10px auto;
78 } 79 }
79 li{ 80 li{
...@@ -85,7 +86,7 @@ export default { ...@@ -85,7 +86,7 @@ export default {
85 display: flex; 86 display: flex;
86 position: relative; 87 position: relative;
87 padding: 6px 15px 18px; 88 padding: 6px 15px 18px;
88 - width: 700px; 89 + width: 960px;
89 border-radius:5px; 90 border-radius:5px;
90 } 91 }
91 .title{ 92 .title{
......