redux-devtools/packages/redux-devtools-app/assets/index.html

46 lines
962 B
HTML
Raw Normal View History

2019-01-03 18:02:43 +03:00
<!DOCTYPE html>
<html>
2019-01-10 21:51:14 +03:00
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>Redux DevTools</title>
<style>
2019-01-03 18:02:43 +03:00
body {
2019-01-10 21:51:14 +03:00
position: fixed;
overflow: hidden;
height: 100%;
width: 100%;
margin: 0;
padding: 0;
2019-01-03 18:02:43 +03:00
}
2019-01-10 21:51:14 +03:00
#root {
height: 100%;
2019-01-03 18:02:43 +03:00
}
2019-01-10 21:51:14 +03:00
@media print {
@page {
size: auto;
margin: 0;
}
body {
position: static;
}
#root > div > div:not(:nth-child(2)) {
display: none !important;
}
#root > div > div:nth-child(2) {
overflow: visible !important;
position: absolute !important;
z-index: 2147483647;
page-break-after: avoid;
}
#root > div > div:nth-child(2) * {
overflow: visible !important;
}
2019-01-03 18:02:43 +03:00
}
2019-01-10 21:51:14 +03:00
</style>
</head>
<body>
<div id="root"></div>
</body>
</html>