mockaton 13.9.5 → 13.9.6
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 +1 -1
- package/src/client/app.css +6 -3
package/package.json
CHANGED
package/src/client/app.css
CHANGED
|
@@ -23,10 +23,12 @@
|
|
|
23
23
|
|
|
24
24
|
accent-color: var(--colorAccent);
|
|
25
25
|
--radius: 16px;
|
|
26
|
+
--subtoolbarHeight: 42px;
|
|
26
27
|
}
|
|
27
28
|
|
|
28
29
|
html,
|
|
29
30
|
body {
|
|
31
|
+
overflow: hidden;
|
|
30
32
|
height: 100%;
|
|
31
33
|
font-size: 12px;
|
|
32
34
|
}
|
|
@@ -341,15 +343,15 @@ main {
|
|
|
341
343
|
}
|
|
342
344
|
|
|
343
345
|
.leftSide {
|
|
344
|
-
|
|
346
|
+
display: grid;
|
|
345
347
|
width: 50%;
|
|
346
348
|
border-top: 1px solid var(--colorBorder);
|
|
347
349
|
border-right: 1px solid var(--colorBorder);
|
|
350
|
+
grid-template-rows: var(--subtoolbarHeight) 1fr;
|
|
348
351
|
}
|
|
349
352
|
|
|
350
353
|
.rightSide {
|
|
351
354
|
position: relative;
|
|
352
|
-
overflow: hidden;
|
|
353
355
|
min-width: 100px;
|
|
354
356
|
min-height: 0;
|
|
355
357
|
flex: 1;
|
|
@@ -391,7 +393,6 @@ main {
|
|
|
391
393
|
|
|
392
394
|
.SubToolbar {
|
|
393
395
|
display: flex;
|
|
394
|
-
height: 42px;
|
|
395
396
|
align-items: center;
|
|
396
397
|
justify-content: space-between;
|
|
397
398
|
padding-right: 14px;
|
|
@@ -719,7 +720,9 @@ main {
|
|
|
719
720
|
|
|
720
721
|
|
|
721
722
|
.PayloadViewer {
|
|
723
|
+
display: grid;
|
|
722
724
|
height: 100%;
|
|
725
|
+
grid-template-rows: var(--subtoolbarHeight) 1fr;
|
|
723
726
|
|
|
724
727
|
> pre {
|
|
725
728
|
overflow: auto;
|