| Sean McCullough | 71941bd | 2025-04-18 13:31:48 -0700 | [diff] [blame^] | 1 | <!doctype html> |
| Sean McCullough | 86b5686 | 2025-04-18 13:04:03 -0700 | [diff] [blame] | 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 { |
| Sean McCullough | 71941bd | 2025-04-18 13:31:48 -0700 | [diff] [blame^] | 15 | font-family: |
| 16 | system-ui, |
| 17 | -apple-system, |
| 18 | BlinkMacSystemFont, |
| 19 | "Segoe UI", |
| 20 | Roboto, |
| 21 | sans-serif; |
| Sean McCullough | 86b5686 | 2025-04-18 13:04:03 -0700 | [diff] [blame] | 22 | 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> |