Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
Triz_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
sdy
2020-05-06 00:20:52 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b4e8a183cd38d88b998d25ba6950a5dca9fd2a6e
b4e8a183
1 parent
d989f406
update GlobalStyles.js
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
4 deletions
front/src/Styles/GlobalStyles.js
front/src/Styles/GlobalStyles.js
View file @
b4e8a18
...
...
@@ -2,12 +2,24 @@ import { createGlobalStyle } from "styled-components";
import
reset
from
"styled-reset"
;
export
default
createGlobalStyle
`
@import url('https://fonts.googleapis.com/css2?family=Nanum+Brush+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Do+Hyeon&family=Nanum+Gothic+Coding:wght@400;700&family=Nanum+Pen+Script&family=Sunflower:wght@300;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,900&display=swap');
${
reset
}
* {
box-sizing: border-box;
}
html, body {
height: 100vh;
}
#root {
height: 100%;
display:flex;
flex-direction: row;
}
@font-face {
font-family: 'Shadows Into Light', cursive;
src: url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');
}
@font-face {
font-family: 'Kaushan Script', cursive;
src: url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
}
`
;
...
...
Please
register
or
login
to post a comment