mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-06-28 05:29:29 +00:00
33 lines
No EOL
899 B
HTML
33 lines
No EOL
899 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Session Details - VibeTunnel</title>
|
|
<style>
|
|
/* Base styles before component loads */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
|
|
background-color: #f5f5f5;
|
|
color: #333333;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: #1e1e1e;
|
|
color: #ffffff;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<session-detail-app></session-detail-app>
|
|
<script type="module" src="./components/session-detail-app.js"></script>
|
|
</body>
|
|
</html> |