pinokiod 3.158.0 → 3.159.0
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/server/views/shell.ejs
CHANGED
|
@@ -196,6 +196,11 @@ body.dark #status-window b {
|
|
|
196
196
|
background: rgba(127, 91, 243, 0.9);
|
|
197
197
|
transition: width 0.2s;
|
|
198
198
|
}
|
|
199
|
+
@media only screen and (max-width: 768px) {
|
|
200
|
+
body {
|
|
201
|
+
flex-direction: column !important;
|
|
202
|
+
}
|
|
203
|
+
}
|
|
199
204
|
</style>
|
|
200
205
|
<link href="/terminal.css" rel="stylesheet"/>
|
|
201
206
|
<script>
|
|
@@ -172,6 +172,11 @@ body.dark #status-window b {
|
|
|
172
172
|
body.frozen {
|
|
173
173
|
overflow: auto !important;
|
|
174
174
|
}
|
|
175
|
+
@media only screen and (max-width: 768px) {
|
|
176
|
+
body {
|
|
177
|
+
flex-direction: column !important;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
175
180
|
</style>
|
|
176
181
|
<link href="/terminal.css" rel="stylesheet"/>
|
|
177
182
|
<script>
|