Reformat main css + disable default styling on link/a tags

This commit is contained in:
2018-03-23 00:35:23 +05:30
parent 563b488c71
commit deecf1ea0f
+8 -6
View File
@@ -2,16 +2,13 @@ html {
box-sizing: border-box; box-sizing: border-box;
} }
*, *, *:before, *:after {
*:before,
*:after {
box-sizing: inherit; box-sizing: inherit;
} }
html,body{ html, body {
margin: 0; margin: 0;
padding: 0; padding: 0;
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
@@ -20,7 +17,12 @@ body {
font-family: sans-serif; font-family: sans-serif;
} }
#root{ #root {
width: 100%; width: 100%;
height: 100%; height: 100%;
}
a {
color: inherit;
text-decoration: none;
} }