13 lines
269 B
CSS
13 lines
269 B
CSS
|
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
|
||
|
|
||
|
body {
|
||
|
margin: 0;
|
||
|
font-family: "Noto Sans KR", sans-serif;
|
||
|
font-optical-sizing: auto;
|
||
|
min-height: 100vh;
|
||
|
}
|
||
|
|
||
|
#root {
|
||
|
margin: 0;
|
||
|
min-height: 100vh;
|
||
|
}
|