blob: 8d1a30ceda7dc5950eecdfc8a9982d2ebae9a51f [file] [log] [blame]
Sean McCullough71941bd2025-04-18 13:31:48 -07001<!doctype html>
Sean McCullough86b56862025-04-18 13:04:03 -07002<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 {
Sean McCullough71941bd2025-04-18 13:31:48 -070015 font-family:
16 system-ui,
17 -apple-system,
18 BlinkMacSystemFont,
19 "Segoe UI",
20 Roboto,
21 sans-serif;
Sean McCullough86b56862025-04-18 13:04:03 -070022 margin: 0;
23 padding: 0;
24 color: #333;
25 line-height: 1.4;
26 overflow-x: hidden; /* Prevent horizontal scrolling */
27 display: flex;
28 flex-direction: column;
29 }
30 </style>
31 <script src="static/sketch-app-shell.js" async type="module"></script>
32 </head>
33 <body>
34 <sketch-app-shell></sketch-app-shell>
35 </body>
36</html>