Skip to content

Commit 6614541

Browse files
committed
Fix: design
1 parent 6cde363 commit 6614541

4 files changed

Lines changed: 9 additions & 11 deletions

File tree

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
"date-fns": "^2.30.0",
1313
"framer-motion": "^10.18.0",
1414
"gray-matter": "^4.0.3",
15-
"gray-matter": "^4.0.3",
1615
"katex": "^0.16.10",
1716
"lucide-react": "^0.290.0",
1817
"next": "14.2.3",

src/app/[...slug]/page.module.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262
font-size: 1.1rem;
6363
line-height: 1.7;
6464
color: var(--foreground);
65-
max-width: 68ch;
66-
/* Narrows the reading area */
65+
max-width: 58ch;
66+
/* Narrower reading area */
6767
margin: 0 auto;
6868
/* Centers the content block */
6969
}

src/components/Intro.module.css

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,21 @@
3434
justify-content: center;
3535
}
3636

37-
.link {
37+
.iconLink {
3838
display: flex;
3939
align-items: center;
40-
gap: 0.5rem;
40+
justify-content: center;
41+
width: 48px;
42+
height: 48px;
4143
color: var(--foreground);
4244
opacity: 0.7;
43-
font-size: 0.95rem;
44-
font-weight: 500;
4545
transition: all 0.2s;
46-
padding: 0.5rem 1rem;
47-
border-radius: 999px;
46+
border-radius: 50%;
4847
background: var(--glass-bg);
4948
border: 1px solid var(--glass-border);
5049
}
5150

52-
.link:hover {
51+
.iconLink:hover {
5352
opacity: 1;
5453
transform: translateY(-2px);
5554
background: rgba(255, 255, 255, 0.8);

src/components/Intro.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default function Intro() {
1919
<Linkedin size={24} />
2020
</a>
2121
<a href="/cv/Subin_Park_CV.pdf" target="_blank" rel="noopener noreferrer" className={styles.iconLink} aria-label="CV">
22-
<FileText size={24} />
22+
<span style={{ fontWeight: 600, fontSize: '0.9rem' }}>CV</span>
2323
</a>
2424
<a href="mailto:subinpark@yonsei.ac.kr" className={styles.iconLink} aria-label="Email">
2525
<Mail size={24} />

0 commit comments

Comments
 (0)