Moved neccesary css to App.css

This commit is contained in:
Camerin Figueroa 2021-10-20 22:16:22 -04:00
parent 474274ff19
commit 766e665b8b
1 changed files with 24 additions and 1 deletions

View File

@ -1,4 +1,27 @@
* {
box-sizing: border-box;
}
a:link {
color: #FFFFFF;
text-decoration: none;
cursor: pointer;
}
a:visited {
color: #FFF0F0;
text-decoration: none;
cursor: pointer;
}
html, body {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; margin:0;
width:100%;
background-color: #3F3F4A;
}
.App {
height: 100vh;
display:flex;
flex-direction:column;
}