diff --git a/src/App.module.scss b/src/App.module.scss index e994711..9a2e4b8 100644 --- a/src/App.module.scss +++ b/src/App.module.scss @@ -1,3 +1 @@ -.App { - text-align: center; -} \ No newline at end of file +@import './common/styles/global.scss'; \ No newline at end of file diff --git a/src/App.tsx b/src/App.tsx index c1339df..0253a44 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -3,7 +3,7 @@ import styles from './App.module.scss'; function App() { return ( -
+
); diff --git a/src/common/styles/global.scss b/src/common/styles/global.scss index e69de29..7dc5bf8 100644 --- a/src/common/styles/global.scss +++ b/src/common/styles/global.scss @@ -0,0 +1,8 @@ +@import './colors.scss'; + +* { + padding: 0; + margin: 0; + box-sizing: border-box; + font-size: 62.5%; +} \ No newline at end of file