mirror of
https://github.com/gromlab-ru/svg-sprites.git
synced 2026-07-22 20:50:19 +03:00
18 lines
531 B
HTML
18 lines
531 B
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
<title>Alpine Vite sprite fixture</title>
|
||
|
|
<style>
|
||
|
|
:root { font-family: system-ui, sans-serif; color: #172033; background: #fff; }
|
||
|
|
body { margin: 0; padding: 40px; }
|
||
|
|
gromlab-sprite-viewer { display: block; margin-top: 32px; }
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<main id="app"></main>
|
||
|
|
<script type="module" src="/src/main.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|