mirror of
https://github.com/ivabus/gui
synced 2025-06-08 00:00:27 +03:00

* remove unused components * remove pnpm * implementation of local dev pantry setup (#689)
19 lines
398 B
HTML
19 lines
398 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
%sveltekit.head%
|
|
<style>
|
|
html {
|
|
overflow: hidden;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|