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 CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "mockaton",
3
3
  "description": "HTTP Mock Server",
4
4
  "type": "module",
5
- "version": "12.1.0",
5
+ "version": "12.1.1",
6
6
  "exports": {
7
7
  ".": {
8
8
  "import": "./index.js",
package/src/client/app.js CHANGED
@@ -225,7 +225,7 @@ function SettingsMenu(id) {
225
225
  href: 'https://mockaton.com',
226
226
  target: '_blank',
227
227
  rel: 'noopener noreferrer'
228
- }, t`Website`),
228
+ }, t`Documentation`),
229
229
 
230
230
  r('a', {
231
231
  href: 'https://github.com/ericfortis/mockaton',
@@ -384,7 +384,8 @@ main {
384
384
  height: 42px;
385
385
  align-items: center;
386
386
  justify-content: space-between;
387
- padding: 0 16px;
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: -4px;
711
- width: 100%;
712
+ top: -12px;
713
+ left: -16px;
714
+ width: calc(100% + 32px);
712
715
  height: 2px;
713
716
  background: var(--colorComboBoxHeaderBackground);
714
717