Skip to content

Commit 04d9e0e

Browse files
authoredNov 2, 2024
Merge pull request #57 from Co-Labor-Project/refactoring
version 1.0.2
2 parents 14cdbbb + 6b81437 commit 04d9e0e

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed
 

‎src/pages/Home/components/Contact.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const JunHwa = () => {
5858
<a href="mailto:jjj5306@naver.com">
5959
<Icon src="https://skillicons.dev/icons?i=gmail" />
6060
</a>
61-
<a href="https://instagram.com/no_dohyun">
61+
<a href="https://instagram.com/jo__ojun">
6262
<Icon src="https://skillicons.dev/icons?i=instagram" />
6363
</a>
6464
</ContactWrapper>

‎src/pages/Jobs/components/JobNotieItem.jsx

+10-3
Original file line numberDiff line numberDiff line change
@@ -129,26 +129,33 @@ const TextTitle = styled.div`
129129
margin-top: 3px;
130130
font-size: 18px;
131131
font-weight: bold;
132+
white-space: nowrap;
133+
overflow: hidden;
134+
text-overflow: ellipsis;
132135
`;
133136
const TextWrapper = styled.div`
134137
display: flex;
135138
`;
136139
const TextItem = styled.div`
137140
font-size: 13px;
138-
font-weight: 700;
141+
font-weight: 600;
139142
line-height: 25px;
140143
width: 100px;
141144
min-width: 100px;
142145
`;
143146
const TextContent = styled.div`
144147
font-size: 13px;
145148
line-height: 25px;
149+
color: #666;
150+
white-space: nowrap;
151+
overflow: hidden;
152+
text-overflow: ellipsis;
146153
`;
147154
const EnterpriseName = styled.div`
148-
font-size: 16px;
155+
font-size: 14px;
149156
font-weight: bold;
150157
margin-bottom: 10px;
151-
color: #232527;
158+
color: #666;
152159
`;
153160

154161
const Imgwrapper = styled.div`

0 commit comments

Comments
 (0)
Please sign in to comment.