@echomem/mcp 1.4.18 → 1.4.19

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.
@@ -33,9 +33,7 @@ export const SETUP_PAGE_STYLES_FOUNDATION = String.raw ` :root {
33
33
  body {
34
34
  margin: 0;
35
35
  min-height: 100vh;
36
- background:
37
- linear-gradient(180deg, rgba(245, 241, 231, 0.92), rgba(255, 255, 255, 0.96)),
38
- var(--echo-paper-canvas);
36
+ background: var(--echo-paper-canvas);
39
37
  color: var(--echo-ink-text);
40
38
  font-family: var(--echo-font-body);
41
39
  letter-spacing: 0;
@@ -88,9 +86,9 @@ export const SETUP_PAGE_STYLES_FOUNDATION = String.raw ` :root {
88
86
  align-items: center;
89
87
  gap: 8px;
90
88
  border: 1px solid #c9ccc3;
91
- border-radius: 999px;
89
+ border-radius: 2px;
92
90
  padding: 0 14px;
93
- background: var(--panel);
91
+ background: transparent;
94
92
  font-family: var(--echo-font-mono);
95
93
  font-size: 12px;
96
94
  font-weight: 700;
@@ -129,7 +127,14 @@ export const SETUP_PAGE_STYLES_FOUNDATION = String.raw ` :root {
129
127
  }
130
128
  .scanLoader {
131
129
  width: min(720px, 100%);
132
- text-align: center;
130
+ border-top: 1px solid #c9cbc6;
131
+ border-right: 1px solid #c9cbc6;
132
+ border-bottom: 1px solid #c9cbc6;
133
+ border-left: 5px solid var(--echo-ink-primary);
134
+ border-radius: 2px;
135
+ background: var(--echo-paper-white);
136
+ padding: clamp(30px, 6vw, 58px);
137
+ text-align: left;
133
138
  }
134
139
  .scanEyebrow {
135
140
  margin: 0 0 22px;
@@ -148,17 +153,17 @@ export const SETUP_PAGE_STYLES_FOUNDATION = String.raw ` :root {
148
153
  }
149
154
  .scanProgress {
150
155
  width: min(520px, 100%);
151
- height: 9px;
152
- margin: 42px auto 0;
156
+ height: 6px;
157
+ margin: 38px 0 0;
153
158
  overflow: hidden;
154
- border-radius: 999px;
159
+ border-radius: 0;
155
160
  background: #e2e3e9;
156
161
  }
157
162
  .scanProgressFill {
158
163
  display: block;
159
164
  height: 100%;
160
165
  min-width: 10px;
161
- border-radius: inherit;
166
+ border-radius: 0;
162
167
  background: var(--echo-ink-primary);
163
168
  transition: width 320ms ease;
164
169
  }
@@ -181,10 +186,10 @@ export const SETUP_PAGE_STYLES_FOUNDATION = String.raw ` :root {
181
186
  body.cityMode main > header {
182
187
  display: none;
183
188
  }
184
- body.extractMode header {
189
+ body.extractMode main > header {
185
190
  display: none;
186
191
  }
187
- body.readyMode header {
192
+ body.readyMode main > header {
188
193
  display: none;
189
194
  }
190
195
  body.extractMode main {
@@ -196,12 +201,12 @@ export const SETUP_PAGE_STYLES_FOUNDATION = String.raw ` :root {
196
201
  body.readyMode main {
197
202
  min-height: 100vh;
198
203
  display: grid;
199
- align-items: center;
204
+ align-items: start;
200
205
  justify-items: center;
201
- padding: clamp(24px, 5vw, 56px);
206
+ padding: clamp(28px, 5vw, 58px) clamp(18px, 5vw, 56px) clamp(48px, 7vw, 84px);
202
207
  }
203
208
  body.readyMode {
204
- background: #f1f1ef;
209
+ background: #f5f3ed;
205
210
  }
206
211
  body.cityMode #app {
207
212
  display: block;