Files
hapi/web/e2e-fixtures/terminal-wrap-fixture.html
T
Junmo KimandGitHub 084d3462cf fix(web): keep line numbers clear when code wraps (#1260)
* fix(web): reserve code gutter padding

* fix(web): expose diff wrap controls

* test(ci): run terminal wrap regression
2026-08-01 17:11:40 +08:00

19 lines
641 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>HAPI terminal wrap fixture</title>
<style>
html { background: #fff }
html[data-theme="dark"] { background: #1c1c1e; color-scheme: dark }
body { margin: 0; padding: 16px; font-family: system-ui, sans-serif }
#root { max-width: 720px; margin: 0 auto }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="./terminal-wrap-fixture.tsx"></script>
</body>
</html>