hyper/app/index.html
CHaBou 1f3ea081e8 Fix flicks after a full reload or when close tab button (dis)appear. (Fix #1490, #1575, #1579) (#1602)
* Fix term text flick when mouse is hovering tab

* Fix flick issue after a full reload
2017-03-05 13:34:03 -03:00

37 lines
740 B
HTML

<!doctype html>
<html>
<head>
<title>Hyper</title>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0">
<style>
body {
color: #fff;
-webkit-backface-visibility: hidden;
}
* {
margin: 0;
padding: 0;
text-rendering: optimizeLegibility;
box-sizing: border-box;
}
@media (min-resolution: 2dppx) {
* {
text-rendering: geometricPrecision;
}
}
</style>
</head>
<body>
<div id="mount"></div>
<script>start = performance.now();</script>
<script src="dist/bundle.js"></script>
<script>console.log('total init time', performance.now() - start);</script>
</body>
</html>