mockaton 7.4.0 → 7.4.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Dashboard.css +7 -12
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "mockaton",
3
3
  "description": "A deterministic server-side for developing and testing frontend clients",
4
4
  "type": "module",
5
- "version": "7.4.0",
5
+ "version": "7.4.1",
6
6
  "main": "index.js",
7
7
  "types": "index.d.ts",
8
8
  "license": "MIT",
package/src/Dashboard.css CHANGED
@@ -10,11 +10,10 @@
10
10
  --colorComboBoxBackground: #fafafa;
11
11
  --colorComboBoxHeaderBackground: #fff;
12
12
  --colorDisabled: #222;
13
- --colorHeaderBackground: #f7f7f7;
13
+ --colorHeaderBackground: #fff;
14
14
  --colorHover: #dfefff;
15
15
  --colorLabel: #666;
16
16
  --colorLightRed: #ffe4ee;
17
- --colorMockBodyBackground: #fafafa;
18
17
  --colorRed: #da0f00;
19
18
  --colorSecondaryButtonBackground: #fafafa;
20
19
  --colorText: #000;
@@ -28,11 +27,10 @@
28
27
  --colorComboBoxBackground: #252525;
29
28
  --colorComboBoxHeaderBackground: #222;
30
29
  --colorDisabled: #aaa;
31
- --colorHeaderBackground: #0b0b0b;
30
+ --colorHeaderBackground: #141414;
32
31
  --colorHover: #023661;
33
32
  --colorLabel: #aaa;
34
33
  --colorLightRed: #ffe4ee;
35
- --colorMockBodyBackground: #333;
36
34
  --colorRed: #f41606;
37
35
  --colorSecondaryButtonBackground: #444;
38
36
  --colorText: #fff;
@@ -85,15 +83,13 @@ menu {
85
83
  display: flex;
86
84
  width: 100%;
87
85
  align-items: flex-end;
88
- padding: 20px 16px;
89
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
86
+ padding: 16px 16px;
90
87
  background: var(--colorHeaderBackground);
91
88
  gap: 16px;
92
89
 
93
90
  img {
94
91
  width: 140px;
95
- margin-right: 76px;
96
- margin-left: -1px;
92
+ margin-right: 75px;
97
93
  }
98
94
 
99
95
  label {
@@ -139,7 +135,7 @@ menu {
139
135
  main {
140
136
  display: flex;
141
137
  align-items: flex-start;
142
- margin-top: 64px;
138
+ margin-top: 56px;
143
139
 
144
140
  > table {
145
141
  border-collapse: collapse;
@@ -161,7 +157,7 @@ main {
161
157
  position: sticky;
162
158
  top: 80px;
163
159
  width: 50%;
164
- margin-left: 16px;
160
+ margin-left: 20px;
165
161
 
166
162
  h2 {
167
163
  padding-top: 20px;
@@ -171,10 +167,9 @@ main {
171
167
  overflow: auto;
172
168
  max-height: calc(100vh - 160px);
173
169
  padding: 12px;
170
+ padding-left: 0;
174
171
  margin-top: 6px;
175
- box-shadow: var(--boxShadow1);
176
172
  border-radius: 4px;
177
- background: var(--colorMockBodyBackground);
178
173
  white-space: pre;
179
174
  tab-size: 2;
180
175