@danainnovations/cortex-mcp 1.0.120 → 1.0.121
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/dist/cli.js +4 -3
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -635,9 +635,9 @@ function getWizardHtml() {
|
|
|
635
635
|
|
|
636
636
|
/* \u2500\u2500 Connection List \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
|
|
637
637
|
.conn-list {
|
|
638
|
-
display:
|
|
639
|
-
|
|
640
|
-
gap:
|
|
638
|
+
display: grid;
|
|
639
|
+
grid-template-columns: repeat(2, 1fr);
|
|
640
|
+
gap: 6px;
|
|
641
641
|
margin-bottom: 8px;
|
|
642
642
|
}
|
|
643
643
|
.conn-item {
|
|
@@ -810,6 +810,7 @@ function getWizardHtml() {
|
|
|
810
810
|
/* \u2500\u2500 Tablet / narrow \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
|
|
811
811
|
@media (max-width: 900px) {
|
|
812
812
|
.mcp-list { grid-template-columns: repeat(2, 1fr); }
|
|
813
|
+
.conn-list { grid-template-columns: 1fr; }
|
|
813
814
|
}
|
|
814
815
|
|
|
815
816
|
/* \u2500\u2500 Mobile \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
|