Skip to content

Commit

Permalink
feat: change root tag from div to main and remove loading color
Browse files Browse the repository at this point in the history
  • Loading branch information
hyex committed Dec 17, 2020
1 parent 6e26eaf commit 69ca8e1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
<title>I'm slack (Team 12-A)</title>
</head>
<body>
<div id="root"></div>
<main id="root"></main>
</body>
</html>
4 changes: 4 additions & 0 deletions client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ const GlobalStyle = createGlobalStyle`
height: 100vh;
width: 100vw;
}
main {
height: 100%;
width: 100%;
}
* {
padding: 0px;
margin: 0px;
Expand Down
2 changes: 1 addition & 1 deletion client/src/component/atom/Loading/Loading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const Circle = styled.div`
width: 5%;
height: 5%;
border-radius: 50%;
background-color: #4285f4;
background-color: #ffffff;
animation: ${bounce} 1s infinite;
`

Expand Down

0 comments on commit 69ca8e1

Please sign in to comment.