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-04-10 13:47:00 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1ac93952bf7a41f27b5438b824b959af25d22a47
1ac93952
1 parent
1786cc5e
set global styles and variables
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
front/src/Styles/GlobalStyleVariables.js
front/src/Styles/GlobalStyles.js
front/src/Styles/GlobalStyleVariables.js
0 → 100644
View file @
1ac9395
export
default
{
bgColor
:
"white"
,
};
front/src/Styles/GlobalStyles.js
0 → 100644
View file @
1ac9395
import
{
createGlobalStyle
}
from
"styled-components"
;
import
reset
from
"styled-reset"
;
export
default
createGlobalStyle
`
${
reset
}
* {
box-sizing: border-box;
}
`
;
Please
register
or
login
to post a comment