agent-relay-server 0.4.1 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/public/index.html
CHANGED
|
@@ -25,6 +25,8 @@
|
|
|
25
25
|
|
|
26
26
|
.ar-sidebar-footer { margin-top: auto; padding: 12px 16px; border-top: 1px solid var(--tblr-border-color); font-size: 12px; }
|
|
27
27
|
|
|
28
|
+
.ar-main { height: 100vh; }
|
|
29
|
+
|
|
28
30
|
.view-fit { display: flex; flex-direction: column; height: calc(100vh - 2rem); }
|
|
29
31
|
|
|
30
32
|
.status-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
|
|
@@ -60,7 +62,15 @@
|
|
|
60
62
|
|
|
61
63
|
@media (max-width: 768px) {
|
|
62
64
|
.ar-sidebar { display: none; }
|
|
63
|
-
.mobile-nav {
|
|
65
|
+
.mobile-nav {
|
|
66
|
+
display: flex !important;
|
|
67
|
+
min-height: 52px;
|
|
68
|
+
overflow-x: auto;
|
|
69
|
+
}
|
|
70
|
+
.ar-main {
|
|
71
|
+
box-sizing: border-box;
|
|
72
|
+
padding-top: 52px;
|
|
73
|
+
}
|
|
64
74
|
}
|
|
65
75
|
</style>
|
|
66
76
|
</head>
|
|
@@ -112,7 +122,7 @@
|
|
|
112
122
|
</div>
|
|
113
123
|
|
|
114
124
|
<!-- Main content -->
|
|
115
|
-
<main class="flex-grow-1 overflow-auto"
|
|
125
|
+
<main class="ar-main flex-grow-1 overflow-auto">
|
|
116
126
|
<div class="container-xl py-3">
|
|
117
127
|
<template x-if="authNeeded">
|
|
118
128
|
<div class="alert alert-warning d-flex align-items-center gap-2 mb-3">
|
|
@@ -131,6 +141,9 @@
|
|
|
131
141
|
|
|
132
142
|
<!-- ==================== OVERVIEW ==================== -->
|
|
133
143
|
<div x-show="view === 'overview'" x-cloak class="fade-in">
|
|
144
|
+
<div class="d-md-none mb-3">
|
|
145
|
+
<h2 class="page-title mb-0">Overview</h2>
|
|
146
|
+
</div>
|
|
134
147
|
|
|
135
148
|
<!-- Stats row -->
|
|
136
149
|
<div class="row g-3 mb-4">
|