- Add kindred-logo.svg as site favicon (#115) - Narrow settings page to 66% max-width, centered (#116) - Add max-height and scroll to API token table (#118) Closes #115, closes #116, closes #118
14 lines
388 B
HTML
14 lines
388 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<title>Silo</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|