agent-discover 1.3.6 → 1.3.7
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/agent-desk-plugin.json +1 -1
- package/dist/ui/styles.css +23 -1
- package/package.json +1 -1
package/agent-desk-plugin.json
CHANGED
package/dist/ui/styles.css
CHANGED
|
@@ -1542,8 +1542,30 @@ body {
|
|
|
1542
1542
|
gap: 8px;
|
|
1543
1543
|
}
|
|
1544
1544
|
.section-title {
|
|
1545
|
-
font-size:
|
|
1545
|
+
font-size: 16px;
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
/* -- Tool list: stack vertically on mobile -- */
|
|
1549
|
+
.tool-list {
|
|
1550
|
+
grid-template-columns: 1fr;
|
|
1551
|
+
gap: 0;
|
|
1552
|
+
}
|
|
1553
|
+
.tool-name {
|
|
1554
|
+
white-space: normal;
|
|
1555
|
+
padding-top: 8px;
|
|
1556
|
+
border-bottom: none;
|
|
1546
1557
|
}
|
|
1558
|
+
.tool-desc {
|
|
1559
|
+
padding-top: 2px;
|
|
1560
|
+
padding-bottom: 8px;
|
|
1561
|
+
}
|
|
1562
|
+
|
|
1563
|
+
/* -- Nav item touch targets -- */
|
|
1564
|
+
.nav-item {
|
|
1565
|
+
min-height: 48px;
|
|
1566
|
+
position: relative;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1547
1569
|
.server-grid {
|
|
1548
1570
|
grid-template-columns: 1fr;
|
|
1549
1571
|
}
|
package/package.json
CHANGED