| Sean McCullough | 86b5686 | 2025-04-18 13:04:03 -0700 | [diff] [blame^] | 1 | <!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> |