27 lines
421 B
CSS
27 lines
421 B
CSS
#root {
|
|
height:100%;
|
|
max-height: 100%;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
}
|
|
html{
|
|
height:100%;
|
|
max-height: 100%;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
}
|
|
body {
|
|
height:100%;
|
|
max-height: 100%;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
margin: 0;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
monospace;
|
|
}
|