Skip to content

Commit

Permalink
아이폰 폰트 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
ChoiYongWon committed Dec 2, 2022
1 parent d36c3f1 commit 65d362d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
5 changes: 4 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
<meta name="theme-color" content="#000000" />
<meta
name="description"
Expand Down
7 changes: 7 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,16 @@ import { RecoilRoot } from "recoil";
const GlobalStyle = createGlobalStyle`
*, *::before, *::after {
box-sizing: border-box;
appearance: none;
-webkit-appearance: none;
}
input{
appearance: none;
-webkit-appearance: none;
-webkit-border-radius: 0;
}
body, html {
padding: 0;
margin: 0;
Expand Down

0 comments on commit 65d362d

Please sign in to comment.