Skip to content

Commit

Permalink
fix(recruitment): 리쿠르트 공지 박스 아이콘 추가 및 bold 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
KimHunJin committed Oct 21, 2021
1 parent 1957ddc commit 09aeca6
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
3 changes: 3 additions & 0 deletions assets/img/ic_caution.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 22 additions & 3 deletions components/recruitment/noticeBox.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<template>
<div class="noticeBox">
<h1 class="contentTitle">{{ boxTitle }}</h1>
<h1 class="contentTitle">
<img class="noticeIcon" src="~/assets/img/ic_caution.svg" />{{ boxTitle }}
</h1>
<p v-for="content in contents" :key="content.id" class="content">
- {{ content.text }}
<span class="dot" />{{ content.text }}
</p>
</div>
</template>
Expand Down Expand Up @@ -39,7 +41,24 @@ export default defineComponent({
border-radius: 16px;
.contentTitle {
font-style: bold;
font-weight: 700;
.noticeIcon {
vertical-align: top;
margin-top: 5px;
margin-right: 5px;
}
}
.dot {
display: inline-block;
width: 4px;
height: 4px;
border-radius: 2px;
margin-right: 5px;
background-color: #000000;
vertical-align: top;
margin-top: 10px;
}
}
Expand Down

0 comments on commit 09aeca6

Please sign in to comment.