2019-01-03 16:00:55 +03:00
|
|
|
<style>
|
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
overflow: hidden;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
min-width: 350px;
|
|
|
|
min-height: 400px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2019-01-10 21:51:14 +03:00
|
|
|
font-family: 'Helvetica Neue', 'Lucida Grande', sans-serif;
|
2019-01-03 16:00:55 +03:00
|
|
|
font-size: 11px;
|
|
|
|
}
|
2019-01-10 21:51:14 +03:00
|
|
|
#root,
|
|
|
|
#root > div {
|
2019-01-03 16:00:55 +03:00
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#root > div > div {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2019-01-09 02:08:34 +03:00
|
|
|
overflow-y: auto;
|
2019-01-03 16:00:55 +03:00
|
|
|
}
|
|
|
|
</style>
|