blob: 6a9f1c347da46058f81551d0bfcea3aab97a4baa [file] [log] [blame]
Sean McCullough86b56862025-04-18 13:04:03 -07001<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8" />
5 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 <title>sketch coding assistant</title>
7 <!-- We only need basic body styling; all component styles are encapsulated -->
8 <style>
9 html,
10 body {
11 height: 100%;
12 overflow-y: auto;
13 }
14 body {
15 font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
16 Roboto, sans-serif;
17 margin: 0;
18 padding: 0;
19 color: #333;
20 line-height: 1.4;
21 overflow-x: hidden; /* Prevent horizontal scrolling */
22 display: flex;
23 flex-direction: column;
24 }
25 </style>
26 <script src="static/sketch-app-shell.js" async type="module"></script>
27 </head>
28 <body>
29 <sketch-app-shell></sketch-app-shell>
30 </body>
31</html>