mockaton 12.1.0 → 12.1.1
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.js +1 -1
- package/src/client/styles.css +6 -3
package/package.json
CHANGED
package/src/client/app.js
CHANGED
package/src/client/styles.css
CHANGED
|
@@ -384,7 +384,8 @@ main {
|
|
|
384
384
|
height: 42px;
|
|
385
385
|
align-items: center;
|
|
386
386
|
justify-content: space-between;
|
|
387
|
-
padding:
|
|
387
|
+
padding-right: 14px;
|
|
388
|
+
padding-left: 16px;
|
|
388
389
|
border-bottom: 1px solid var(--colorSecondaryActionBorder);
|
|
389
390
|
background: var(--colorHeaderBackground);
|
|
390
391
|
}
|
|
@@ -414,6 +415,7 @@ main {
|
|
|
414
415
|
.Table {
|
|
415
416
|
height: 100%;
|
|
416
417
|
padding: 16px;
|
|
418
|
+
padding-left: 12px;
|
|
417
419
|
user-select: none;
|
|
418
420
|
overflow-y: auto;
|
|
419
421
|
|
|
@@ -707,8 +709,9 @@ main {
|
|
|
707
709
|
|
|
708
710
|
.ProgressBar {
|
|
709
711
|
position: relative;
|
|
710
|
-
top: -
|
|
711
|
-
|
|
712
|
+
top: -12px;
|
|
713
|
+
left: -16px;
|
|
714
|
+
width: calc(100% + 32px);
|
|
712
715
|
height: 2px;
|
|
713
716
|
background: var(--colorComboBoxHeaderBackground);
|
|
714
717
|
|