sdy

add body, a tag global style

......@@ -9,14 +9,26 @@ export default createGlobalStyle`
}
body {
max-width: 100%;
min-height: 100vh;
overflow-x: hidden;
display:flex;
flex-direction:column;
}
li {
list-style: none;
}
a {
color: black;
text-decoration:none;
}
input:focus {
outline:none;
}
#root {
max-width: 100%;
min-height: 100vh;
overflow-x: hidden;
display:flex;
flex-direction:column;
}
`;
......