ura-components/index.html

40 lines
819 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0"
/>
<title>Star Web Components</title>
<script type="module" src="/src/index.ts"></script>
</head>
<body>
<!-- main -->
<settings-app></settings-app>
<style>
* {
user-select: none;
}
html {
scrollbar-width: none;
}
body {
margin: 0;
padding: 0;
background: #f0f0f0;
}
@font-face {
font-family: 'gaia-icons';
src: url('fonts/gaia-icons.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}
</style>
</body>
</html>