Merge pull request 'fix: remove default browser body margin causing white border' (#39) from fix/remove-body-margin into master

Reviewed-on: #39
This commit was merged in pull request #39.
This commit is contained in:
2026-03-08 00:38:56 -06:00

View File

@@ -4,6 +4,11 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CPAS Violation Tracker</title>
<style>
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
#root { height: 100%; }
</style>
</head>
<body>
<div id="root"></div>