UNPKG

@nosense00/seal

Version:

Seal project for Tea.xyz OSS registry

60 lines (58 loc) 1.19 kB
<!doctype html> <html lang="en" class="dark-theme" style="color-scheme: dark"> <head> <meta charset="UTF-8" /> <link rel="icon" type="image/svg+xml" href="/vite.svg" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Seal Example Apps</title> <style> /* Josh's Custom CSS Reset https://www.joshwcomeau.com/css/custom-css-reset/ */ *, *::before, *::after { box-sizing: border-box; } * { margin: 0; } body { line-height: 1.5; -webkit-font-smoothing: antialiased; } img, picture, video, canvas, svg { display: block; max-width: 100%; } input, button, textarea, select { font: inherit; } p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; } #root, #__next { isolation: isolate; } </style> </head> <body> <div id="root"></div> <script type="module" src="/src/main.tsx"></script> </body> </html>