Skip to content

Commit 2489ea6

Browse files
committed
Update favicon
1 parent 47feabe commit 2489ea6

15 files changed

+44
-3
lines changed

src/components/List.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ const ListContainer = styled.ul`
66
padding: 0;
77
88
@media (max-width: 680px) {
9-
padding-top: 32px;
9+
padding-top: 2rem;
1010
}
1111
`;
1212

1313
const Item = styled.li`
1414
& + & {
15-
margin-top: 16px;
15+
margin-top: 3rem;
1616
}
1717
1818
* {

src/html.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,18 @@ export default function HTML(props) {
88
<meta charSet='utf-8' />
99
<meta httpEquiv='x-ua-compatible' content='ie=edge' />
1010
<meta name='viewport' content='width=device-width, initial-scale=1, shrink-to-fit=no' />
11+
<link rel='icon' type='image/x-icon' href='/favicons/favicon.ico'></link>
12+
<link rel='icon' type='image/png' href='/favicons/favicon-16.png' sizes='16x16' />
13+
<link rel='icon' type='image/png' href='/favicons/favicon-32.png' sizes='32x32' />
14+
<link rel='icon' type='image/png' href='/favicons/favicon-48.png' sizes='48x48' />
15+
<link rel='icon' type='image/png' href='/favicons/favicon-96.png' sizes='96x96' />
16+
<link rel='icon' type='image/png' href='/favicons/favicon-128.png' sizes='128x128' />
17+
<link rel='icon' type='image/png' href='/favicons/favicon-256.png' sizes='256x256' />
18+
<link rel='apple-touch-icon-precomposed' sizes='180x180' href='/favicons/apple-touch-icon.png' />
19+
<link rel='manifest' href='/manifest.json'></link>
20+
<meta name='application-name' content='pyjun01 개발 블로그' />
1121
<meta property='og:type' content='website' />
12-
<meta property='og:site_name' content='pyjun01 blog' />
22+
<meta property='og:site_name' content='pyjun01 개발 블로그' />
1323
<meta property='og:locale' content='ko_KR' />
1424
<meta name='theme-color' content='#1a5b89' />
1525
<meta name='naver-site-verification' content='2a28f13354877854bb05feb3be7bf8f34ff88f05' />

static/favicon.ico

-198 Bytes
Binary file not shown.
7.19 KB
Loading
26.9 KB
Loading

static/favicons/apple-touch-icon.png

6.56 KB
Loading

static/favicons/favicon-128.png

4.19 KB
Loading

static/favicons/favicon-16.png

497 Bytes
Loading

static/favicons/favicon-256.png

10.4 KB
Loading

static/favicons/favicon-32.png

815 Bytes
Loading

static/favicons/favicon-48.png

1.19 KB
Loading

static/favicons/favicon-96.png

2.56 KB
Loading

static/favicons/favicon.ico

2.52 KB
Binary file not shown.

static/favicons/favicon.svg

Lines changed: 9 additions & 0 deletions
Loading

static/manifest.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "pyjun01 개발 블로그",
3+
"short_name": "pyjun01 블로그",
4+
"icons": [
5+
{
6+
"src": "/favicons/android-chrome-192.png",
7+
"sizes": "192x192",
8+
"type": "image/png"
9+
},
10+
{
11+
"src": "/favicons/android-chrome-512.png",
12+
"sizes": "512x512",
13+
"type": "image/png"
14+
}
15+
],
16+
"start_url": "/",
17+
"background_color": "#1a5b89",
18+
"display": "standalone",
19+
"scope": "/",
20+
"theme_color": "#1a5b89",
21+
"description": "pyjun01 개발 블로그입니다"
22+
}

0 commit comments

Comments
 (0)