ns-auth-sdk 1.0.0
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/LICENSE +201 -0
- package/README.md +241 -0
- package/dist/index.css +673 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.mts +214 -0
- package/dist/index.d.ts +214 -0
- package/dist/index.js +1234 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +1223 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +60 -0
package/dist/index.css
ADDED
|
@@ -0,0 +1,673 @@
|
|
|
1
|
+
/* src/components/auth/Auth.css */
|
|
2
|
+
.auth-container {
|
|
3
|
+
display: flex !important;
|
|
4
|
+
justify-content: center !important;
|
|
5
|
+
align-items: flex-start !important;
|
|
6
|
+
min-height: calc(100vh - 200px) !important;
|
|
7
|
+
padding: 2rem !important;
|
|
8
|
+
margin-top: 2rem !important;
|
|
9
|
+
width: 100% !important;
|
|
10
|
+
}
|
|
11
|
+
.auth-card {
|
|
12
|
+
background: white !important;
|
|
13
|
+
border-radius: 12px !important;
|
|
14
|
+
padding: 3rem !important;
|
|
15
|
+
max-width: 520px !important;
|
|
16
|
+
width: 100% !important;
|
|
17
|
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
|
|
18
|
+
border: 1px solid #e5e7eb !important;
|
|
19
|
+
margin: 0 auto !important;
|
|
20
|
+
}
|
|
21
|
+
.auth-card h1 {
|
|
22
|
+
font-family:
|
|
23
|
+
"Inter",
|
|
24
|
+
-apple-system,
|
|
25
|
+
BlinkMacSystemFont,
|
|
26
|
+
"Segoe UI",
|
|
27
|
+
sans-serif;
|
|
28
|
+
margin: 0 0 1rem 0;
|
|
29
|
+
font-size: 2rem;
|
|
30
|
+
font-weight: 700;
|
|
31
|
+
color: #1a1a1a;
|
|
32
|
+
letter-spacing: -0.03em;
|
|
33
|
+
line-height: 1.2;
|
|
34
|
+
}
|
|
35
|
+
.auth-description {
|
|
36
|
+
color: #666;
|
|
37
|
+
margin-bottom: 2rem;
|
|
38
|
+
line-height: 1.6;
|
|
39
|
+
font-size: 0.9375rem;
|
|
40
|
+
}
|
|
41
|
+
.auth-features {
|
|
42
|
+
display: flex;
|
|
43
|
+
flex-direction: column;
|
|
44
|
+
gap: 1rem;
|
|
45
|
+
margin-bottom: 2rem;
|
|
46
|
+
}
|
|
47
|
+
.feature-item {
|
|
48
|
+
display: flex;
|
|
49
|
+
align-items: center;
|
|
50
|
+
gap: 0.75rem;
|
|
51
|
+
color: #444;
|
|
52
|
+
}
|
|
53
|
+
.feature-icon {
|
|
54
|
+
font-size: 1.5rem;
|
|
55
|
+
}
|
|
56
|
+
.username-section {
|
|
57
|
+
margin-bottom: 1.5rem;
|
|
58
|
+
}
|
|
59
|
+
.username-label {
|
|
60
|
+
display: block;
|
|
61
|
+
color: #444;
|
|
62
|
+
font-size: 0.875rem;
|
|
63
|
+
font-weight: 500;
|
|
64
|
+
margin-bottom: 0.5rem;
|
|
65
|
+
}
|
|
66
|
+
.username-input {
|
|
67
|
+
width: 100%;
|
|
68
|
+
padding: 0.875rem 1rem;
|
|
69
|
+
border: 1px solid #d1d5db;
|
|
70
|
+
border-radius: 8px;
|
|
71
|
+
font-size: 1rem;
|
|
72
|
+
color: #1a1a1a;
|
|
73
|
+
background: white;
|
|
74
|
+
transition: all 0.2s ease;
|
|
75
|
+
box-sizing: border-box;
|
|
76
|
+
}
|
|
77
|
+
.username-input:focus {
|
|
78
|
+
outline: none;
|
|
79
|
+
border-color: #2563eb;
|
|
80
|
+
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
|
|
81
|
+
}
|
|
82
|
+
.username-input:disabled {
|
|
83
|
+
opacity: 0.6;
|
|
84
|
+
cursor: not-allowed;
|
|
85
|
+
background: #f9fafb;
|
|
86
|
+
}
|
|
87
|
+
.username-input::placeholder {
|
|
88
|
+
color: #9ca3af;
|
|
89
|
+
}
|
|
90
|
+
.auth-button {
|
|
91
|
+
width: 100% !important;
|
|
92
|
+
padding: 0.875rem 1.5rem !important;
|
|
93
|
+
font-size: 1rem !important;
|
|
94
|
+
font-weight: 600 !important;
|
|
95
|
+
border: none !important;
|
|
96
|
+
border-radius: 8px !important;
|
|
97
|
+
cursor: pointer !important;
|
|
98
|
+
transition: all 0.2s ease !important;
|
|
99
|
+
background-color: transparent !important;
|
|
100
|
+
color: inherit !important;
|
|
101
|
+
font-family:
|
|
102
|
+
"Inter",
|
|
103
|
+
-apple-system,
|
|
104
|
+
BlinkMacSystemFont,
|
|
105
|
+
"Segoe UI",
|
|
106
|
+
sans-serif !important;
|
|
107
|
+
}
|
|
108
|
+
.auth-button.primary {
|
|
109
|
+
background: #2563eb !important;
|
|
110
|
+
background-color: #2563eb !important;
|
|
111
|
+
color: white !important;
|
|
112
|
+
border: none !important;
|
|
113
|
+
border-color: transparent !important;
|
|
114
|
+
}
|
|
115
|
+
.auth-button.primary:hover:not(:disabled) {
|
|
116
|
+
background: #1d4ed8 !important;
|
|
117
|
+
background-color: #1d4ed8 !important;
|
|
118
|
+
}
|
|
119
|
+
.auth-button.secondary {
|
|
120
|
+
background: #f3f4f6;
|
|
121
|
+
color: #1a1a1a;
|
|
122
|
+
}
|
|
123
|
+
.auth-button.secondary:hover:not(:disabled) {
|
|
124
|
+
background: #e5e7eb;
|
|
125
|
+
}
|
|
126
|
+
.auth-button:disabled {
|
|
127
|
+
opacity: 0.6;
|
|
128
|
+
cursor: not-allowed;
|
|
129
|
+
}
|
|
130
|
+
.loading-state,
|
|
131
|
+
.success-state {
|
|
132
|
+
text-align: center;
|
|
133
|
+
padding: 2rem 0;
|
|
134
|
+
}
|
|
135
|
+
.spinner {
|
|
136
|
+
width: 48px;
|
|
137
|
+
height: 48px;
|
|
138
|
+
border: 4px solid #e5e7eb;
|
|
139
|
+
border-top-color: #2563eb;
|
|
140
|
+
border-radius: 50%;
|
|
141
|
+
animation: spin 1s linear infinite;
|
|
142
|
+
margin: 0 auto 1rem;
|
|
143
|
+
}
|
|
144
|
+
@keyframes spin {
|
|
145
|
+
to {
|
|
146
|
+
transform: rotate(360deg);
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
.loading-hint {
|
|
150
|
+
color: #666;
|
|
151
|
+
font-size: 0.875rem;
|
|
152
|
+
margin-top: 0.5rem;
|
|
153
|
+
}
|
|
154
|
+
.loading-hint-small {
|
|
155
|
+
color: #888;
|
|
156
|
+
font-size: 0.75rem;
|
|
157
|
+
margin-top: 0.75rem;
|
|
158
|
+
max-width: 400px;
|
|
159
|
+
line-height: 1.4;
|
|
160
|
+
}
|
|
161
|
+
.success-icon {
|
|
162
|
+
width: 64px;
|
|
163
|
+
height: 64px;
|
|
164
|
+
background: #10b981;
|
|
165
|
+
color: white;
|
|
166
|
+
border-radius: 50%;
|
|
167
|
+
display: flex;
|
|
168
|
+
align-items: center;
|
|
169
|
+
justify-content: center;
|
|
170
|
+
font-size: 2rem;
|
|
171
|
+
font-weight: bold;
|
|
172
|
+
margin: 0 auto 1rem;
|
|
173
|
+
}
|
|
174
|
+
.success-state p {
|
|
175
|
+
margin: 0.5rem 0;
|
|
176
|
+
color: #1a1a1a;
|
|
177
|
+
}
|
|
178
|
+
.success-hint {
|
|
179
|
+
color: #666;
|
|
180
|
+
font-size: 0.875rem;
|
|
181
|
+
}
|
|
182
|
+
.error-message {
|
|
183
|
+
background: #fee2e2;
|
|
184
|
+
color: #991b1b;
|
|
185
|
+
padding: 0.875rem;
|
|
186
|
+
border-radius: 6px;
|
|
187
|
+
margin-bottom: 1rem;
|
|
188
|
+
font-size: 0.875rem;
|
|
189
|
+
}
|
|
190
|
+
.error-message::selection {
|
|
191
|
+
background: #dc2626;
|
|
192
|
+
color: #ffffff;
|
|
193
|
+
}
|
|
194
|
+
.error-message::-moz-selection {
|
|
195
|
+
background: #dc2626;
|
|
196
|
+
color: #ffffff;
|
|
197
|
+
}
|
|
198
|
+
.error-message.small {
|
|
199
|
+
font-size: 0.75rem;
|
|
200
|
+
padding: 0.5rem;
|
|
201
|
+
margin-bottom: 0.5rem;
|
|
202
|
+
}
|
|
203
|
+
.login-button-container {
|
|
204
|
+
display: flex;
|
|
205
|
+
flex-direction: column;
|
|
206
|
+
align-items: flex-end;
|
|
207
|
+
gap: 0.5rem;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
/* src/components/membership/Membership.css */
|
|
211
|
+
.membership-container {
|
|
212
|
+
display: flex;
|
|
213
|
+
justify-content: center;
|
|
214
|
+
padding: 2rem;
|
|
215
|
+
min-height: 60vh;
|
|
216
|
+
}
|
|
217
|
+
.membership-card {
|
|
218
|
+
background: white;
|
|
219
|
+
border-radius: 12px;
|
|
220
|
+
padding: 2.5rem;
|
|
221
|
+
max-width: 900px;
|
|
222
|
+
width: 100%;
|
|
223
|
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
224
|
+
}
|
|
225
|
+
.membership-card h1 {
|
|
226
|
+
margin: 0 0 1rem 0;
|
|
227
|
+
font-size: 2rem;
|
|
228
|
+
color: #1a1a1a;
|
|
229
|
+
}
|
|
230
|
+
.membership-description {
|
|
231
|
+
color: #666;
|
|
232
|
+
margin-bottom: 2rem;
|
|
233
|
+
line-height: 1.6;
|
|
234
|
+
}
|
|
235
|
+
.save-message {
|
|
236
|
+
padding: 0.875rem;
|
|
237
|
+
border-radius: 6px;
|
|
238
|
+
font-size: 0.875rem;
|
|
239
|
+
margin-bottom: 1.5rem;
|
|
240
|
+
}
|
|
241
|
+
.save-message.success {
|
|
242
|
+
background: #d1fae5;
|
|
243
|
+
color: #065f46;
|
|
244
|
+
}
|
|
245
|
+
.save-message.error {
|
|
246
|
+
background: #fee2e2;
|
|
247
|
+
color: #991b1b;
|
|
248
|
+
}
|
|
249
|
+
.search-section,
|
|
250
|
+
.members-section {
|
|
251
|
+
margin-bottom: 3rem;
|
|
252
|
+
padding-bottom: 2rem;
|
|
253
|
+
border-bottom: 2px solid #e5e7eb;
|
|
254
|
+
}
|
|
255
|
+
.members-section:last-child {
|
|
256
|
+
border-bottom: none;
|
|
257
|
+
}
|
|
258
|
+
.search-section h2,
|
|
259
|
+
.members-section h2 {
|
|
260
|
+
margin: 0 0 1.5rem 0;
|
|
261
|
+
font-size: 1.5rem;
|
|
262
|
+
color: #1a1a1a;
|
|
263
|
+
}
|
|
264
|
+
.search-form {
|
|
265
|
+
display: flex;
|
|
266
|
+
gap: 1rem;
|
|
267
|
+
margin-bottom: 2rem;
|
|
268
|
+
}
|
|
269
|
+
.search-input {
|
|
270
|
+
flex: 1;
|
|
271
|
+
padding: 0.75rem;
|
|
272
|
+
border: 2px solid #e5e7eb;
|
|
273
|
+
border-radius: 6px;
|
|
274
|
+
font-size: 1rem;
|
|
275
|
+
font-family: inherit;
|
|
276
|
+
transition: border-color 0.2s ease;
|
|
277
|
+
}
|
|
278
|
+
.search-input:focus {
|
|
279
|
+
outline: none;
|
|
280
|
+
border-color: #2563eb;
|
|
281
|
+
}
|
|
282
|
+
.search-input:disabled {
|
|
283
|
+
background: #f3f4f6;
|
|
284
|
+
cursor: not-allowed;
|
|
285
|
+
}
|
|
286
|
+
.search-button,
|
|
287
|
+
.scanner-toggle {
|
|
288
|
+
padding: 0.75rem 1.5rem;
|
|
289
|
+
font-size: 1rem;
|
|
290
|
+
font-weight: 600;
|
|
291
|
+
background: #2563eb;
|
|
292
|
+
color: white;
|
|
293
|
+
border: none;
|
|
294
|
+
border-radius: 8px;
|
|
295
|
+
cursor: pointer;
|
|
296
|
+
transition: all 0.2s ease;
|
|
297
|
+
}
|
|
298
|
+
.search-button:hover:not(:disabled),
|
|
299
|
+
.scanner-toggle:hover:not(:disabled) {
|
|
300
|
+
background: #1d4ed8;
|
|
301
|
+
}
|
|
302
|
+
.search-button:disabled,
|
|
303
|
+
.scanner-toggle:disabled {
|
|
304
|
+
opacity: 0.6;
|
|
305
|
+
cursor: not-allowed;
|
|
306
|
+
}
|
|
307
|
+
.profiles-list,
|
|
308
|
+
.members-list {
|
|
309
|
+
display: flex;
|
|
310
|
+
flex-direction: column;
|
|
311
|
+
gap: 1rem;
|
|
312
|
+
}
|
|
313
|
+
.profiles-list h3,
|
|
314
|
+
.members-list h3 {
|
|
315
|
+
margin: 0 0 1rem 0;
|
|
316
|
+
font-size: 1.25rem;
|
|
317
|
+
color: #374151;
|
|
318
|
+
}
|
|
319
|
+
.profile-item,
|
|
320
|
+
.member-item {
|
|
321
|
+
display: flex;
|
|
322
|
+
justify-content: space-between;
|
|
323
|
+
align-items: center;
|
|
324
|
+
gap: 1rem;
|
|
325
|
+
padding: 1rem;
|
|
326
|
+
border: 2px solid #e5e7eb;
|
|
327
|
+
border-radius: 8px;
|
|
328
|
+
background: #f9fafb;
|
|
329
|
+
transition: all 0.2s ease;
|
|
330
|
+
}
|
|
331
|
+
@media (max-width: 640px) {
|
|
332
|
+
.profile-item,
|
|
333
|
+
.member-item {
|
|
334
|
+
flex-direction: column;
|
|
335
|
+
align-items: stretch;
|
|
336
|
+
text-align: left;
|
|
337
|
+
}
|
|
338
|
+
.profile-item .member-button,
|
|
339
|
+
.member-item .member-button {
|
|
340
|
+
width: 100%;
|
|
341
|
+
margin-top: 0.5rem;
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
@media (max-width: 480px) {
|
|
345
|
+
.search-form {
|
|
346
|
+
flex-direction: column;
|
|
347
|
+
}
|
|
348
|
+
.search-input,
|
|
349
|
+
.search-button,
|
|
350
|
+
.scanner-toggle {
|
|
351
|
+
width: 100%;
|
|
352
|
+
}
|
|
353
|
+
.search-button,
|
|
354
|
+
.member-button {
|
|
355
|
+
padding: 0.5rem 0.75rem;
|
|
356
|
+
font-size: 0.9rem;
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
.member-button {
|
|
360
|
+
padding: 0.5rem 1rem;
|
|
361
|
+
font-size: 0.875rem;
|
|
362
|
+
font-weight: 600;
|
|
363
|
+
border: none;
|
|
364
|
+
border-radius: 6px;
|
|
365
|
+
cursor: pointer;
|
|
366
|
+
transition: all 0.2s ease;
|
|
367
|
+
white-space: nowrap;
|
|
368
|
+
}
|
|
369
|
+
.profile-item:hover,
|
|
370
|
+
.member-item:hover {
|
|
371
|
+
border-color: #d1d5db;
|
|
372
|
+
background: #f3f4f6;
|
|
373
|
+
}
|
|
374
|
+
.profile-info {
|
|
375
|
+
display: flex;
|
|
376
|
+
align-items: center;
|
|
377
|
+
gap: 1rem;
|
|
378
|
+
flex: 1;
|
|
379
|
+
}
|
|
380
|
+
.profile-avatar {
|
|
381
|
+
width: 48px;
|
|
382
|
+
height: 48px;
|
|
383
|
+
border-radius: 50%;
|
|
384
|
+
object-fit: cover;
|
|
385
|
+
border: 2px solid #e5e7eb;
|
|
386
|
+
}
|
|
387
|
+
.profile-details {
|
|
388
|
+
flex: 1;
|
|
389
|
+
min-width: 0;
|
|
390
|
+
}
|
|
391
|
+
.profile-name {
|
|
392
|
+
font-weight: 600;
|
|
393
|
+
color: #1a1a1a;
|
|
394
|
+
margin-bottom: 0.25rem;
|
|
395
|
+
}
|
|
396
|
+
.profile-pubkey {
|
|
397
|
+
font-size: 0.875rem;
|
|
398
|
+
color: #6b7280;
|
|
399
|
+
font-family: monospace;
|
|
400
|
+
margin-bottom: 0.25rem;
|
|
401
|
+
}
|
|
402
|
+
.profile-about {
|
|
403
|
+
font-size: 0.875rem;
|
|
404
|
+
color: #4b5563;
|
|
405
|
+
margin-top: 0.5rem;
|
|
406
|
+
line-height: 1.4;
|
|
407
|
+
overflow: hidden;
|
|
408
|
+
text-overflow: ellipsis;
|
|
409
|
+
display: -webkit-box;
|
|
410
|
+
-webkit-line-clamp: 2;
|
|
411
|
+
-webkit-box-orient: vertical;
|
|
412
|
+
}
|
|
413
|
+
.profile-petname {
|
|
414
|
+
font-size: 0.875rem;
|
|
415
|
+
color: #059669;
|
|
416
|
+
margin-top: 0.25rem;
|
|
417
|
+
font-style: italic;
|
|
418
|
+
}
|
|
419
|
+
.member-button.add {
|
|
420
|
+
background: #10b981;
|
|
421
|
+
color: white;
|
|
422
|
+
}
|
|
423
|
+
.member-button.add:hover:not(:disabled) {
|
|
424
|
+
background: #059669;
|
|
425
|
+
}
|
|
426
|
+
.member-button.remove {
|
|
427
|
+
background: #ef4444;
|
|
428
|
+
color: white;
|
|
429
|
+
}
|
|
430
|
+
.member-button.remove:hover:not(:disabled) {
|
|
431
|
+
background: #dc2626;
|
|
432
|
+
}
|
|
433
|
+
.member-button:disabled {
|
|
434
|
+
opacity: 0.6;
|
|
435
|
+
cursor: not-allowed;
|
|
436
|
+
}
|
|
437
|
+
.empty-message {
|
|
438
|
+
color: #6b7280;
|
|
439
|
+
font-style: italic;
|
|
440
|
+
padding: 2rem;
|
|
441
|
+
text-align: center;
|
|
442
|
+
background: #f9fafb;
|
|
443
|
+
border-radius: 8px;
|
|
444
|
+
border: 2px dashed #e5e7eb;
|
|
445
|
+
}
|
|
446
|
+
.loading-state {
|
|
447
|
+
display: flex;
|
|
448
|
+
flex-direction: column;
|
|
449
|
+
align-items: center;
|
|
450
|
+
justify-content: center;
|
|
451
|
+
padding: 4rem 2rem;
|
|
452
|
+
}
|
|
453
|
+
.loading-state .spinner {
|
|
454
|
+
width: 48px;
|
|
455
|
+
height: 48px;
|
|
456
|
+
border: 4px solid #e5e7eb;
|
|
457
|
+
border-top-color: #2563eb;
|
|
458
|
+
border-radius: 50%;
|
|
459
|
+
animation: spin 1s linear infinite;
|
|
460
|
+
margin-bottom: 1rem;
|
|
461
|
+
}
|
|
462
|
+
@keyframes spin {
|
|
463
|
+
to {
|
|
464
|
+
transform: rotate(360deg);
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
.trust-info {
|
|
468
|
+
margin-bottom: 2rem;
|
|
469
|
+
padding: 1.5rem;
|
|
470
|
+
background: #f0f9ff;
|
|
471
|
+
border-radius: 8px;
|
|
472
|
+
border-left: 4px solid #2563eb;
|
|
473
|
+
}
|
|
474
|
+
.trust-info h2 {
|
|
475
|
+
margin: 0 0 1rem 0;
|
|
476
|
+
font-size: 1.25rem;
|
|
477
|
+
color: #1a1a1a;
|
|
478
|
+
}
|
|
479
|
+
.trust-info p {
|
|
480
|
+
margin: 0.75rem 0;
|
|
481
|
+
color: #374151;
|
|
482
|
+
line-height: 1.6;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
/* src/components/profile/Profile.css */
|
|
486
|
+
.profile-container {
|
|
487
|
+
display: flex;
|
|
488
|
+
justify-content: center;
|
|
489
|
+
padding: 2rem;
|
|
490
|
+
min-height: 60vh;
|
|
491
|
+
}
|
|
492
|
+
.profile-card {
|
|
493
|
+
background: white;
|
|
494
|
+
border-radius: 12px;
|
|
495
|
+
padding: 2.5rem;
|
|
496
|
+
max-width: 600px;
|
|
497
|
+
width: 100%;
|
|
498
|
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
499
|
+
}
|
|
500
|
+
.profile-card h1 {
|
|
501
|
+
margin: 0 0 1rem 0;
|
|
502
|
+
font-size: 2rem;
|
|
503
|
+
color: #1a1a1a;
|
|
504
|
+
}
|
|
505
|
+
.profile-description {
|
|
506
|
+
color: #666;
|
|
507
|
+
margin-bottom: 2rem;
|
|
508
|
+
line-height: 1.6;
|
|
509
|
+
}
|
|
510
|
+
.profile-form {
|
|
511
|
+
display: flex;
|
|
512
|
+
flex-direction: column;
|
|
513
|
+
gap: 1.5rem;
|
|
514
|
+
}
|
|
515
|
+
.form-group {
|
|
516
|
+
display: flex;
|
|
517
|
+
flex-direction: column;
|
|
518
|
+
gap: 0.5rem;
|
|
519
|
+
}
|
|
520
|
+
.form-group label {
|
|
521
|
+
font-weight: 600;
|
|
522
|
+
color: #374151;
|
|
523
|
+
font-size: 0.875rem;
|
|
524
|
+
}
|
|
525
|
+
.form-group input,
|
|
526
|
+
.form-group textarea {
|
|
527
|
+
padding: 0.75rem;
|
|
528
|
+
border: 2px solid #e5e7eb;
|
|
529
|
+
border-radius: 6px;
|
|
530
|
+
font-size: 1rem;
|
|
531
|
+
font-family: inherit;
|
|
532
|
+
transition: border-color 0.2s ease;
|
|
533
|
+
}
|
|
534
|
+
.form-group input:focus,
|
|
535
|
+
.form-group textarea:focus {
|
|
536
|
+
outline: none;
|
|
537
|
+
border-color: #2563eb;
|
|
538
|
+
}
|
|
539
|
+
.form-group textarea {
|
|
540
|
+
resize: vertical;
|
|
541
|
+
min-height: 100px;
|
|
542
|
+
}
|
|
543
|
+
.form-actions {
|
|
544
|
+
display: flex;
|
|
545
|
+
gap: 1rem;
|
|
546
|
+
}
|
|
547
|
+
.save-button,
|
|
548
|
+
.cancel-button {
|
|
549
|
+
flex: 1;
|
|
550
|
+
padding: 0.875rem 1.5rem;
|
|
551
|
+
font-size: 1rem;
|
|
552
|
+
font-weight: 600;
|
|
553
|
+
border: none;
|
|
554
|
+
border-radius: 8px;
|
|
555
|
+
cursor: pointer;
|
|
556
|
+
transition: all 0.2s ease;
|
|
557
|
+
}
|
|
558
|
+
.save-button {
|
|
559
|
+
background: #2563eb;
|
|
560
|
+
color: white;
|
|
561
|
+
}
|
|
562
|
+
.save-button:hover:not(:disabled) {
|
|
563
|
+
background: #1d4ed8;
|
|
564
|
+
}
|
|
565
|
+
.save-button:disabled {
|
|
566
|
+
opacity: 0.6;
|
|
567
|
+
cursor: not-allowed;
|
|
568
|
+
}
|
|
569
|
+
.cancel-button {
|
|
570
|
+
background: #f3f4f6;
|
|
571
|
+
color: #1a1a1a;
|
|
572
|
+
}
|
|
573
|
+
.cancel-button:hover {
|
|
574
|
+
background: #e5e7eb;
|
|
575
|
+
}
|
|
576
|
+
.save-message {
|
|
577
|
+
padding: 0.875rem;
|
|
578
|
+
border-radius: 6px;
|
|
579
|
+
font-size: 0.875rem;
|
|
580
|
+
}
|
|
581
|
+
.save-message.success {
|
|
582
|
+
background: #d1fae5;
|
|
583
|
+
color: #065f46;
|
|
584
|
+
}
|
|
585
|
+
.save-message.error {
|
|
586
|
+
background: #fee2e2;
|
|
587
|
+
color: #991b1b;
|
|
588
|
+
}
|
|
589
|
+
.loading-state {
|
|
590
|
+
display: flex;
|
|
591
|
+
flex-direction: column;
|
|
592
|
+
align-items: center;
|
|
593
|
+
justify-content: center;
|
|
594
|
+
padding: 4rem 2rem;
|
|
595
|
+
}
|
|
596
|
+
.loading-state .spinner {
|
|
597
|
+
width: 48px;
|
|
598
|
+
height: 48px;
|
|
599
|
+
border: 4px solid #e5e7eb;
|
|
600
|
+
border-top-color: #2563eb;
|
|
601
|
+
border-radius: 50%;
|
|
602
|
+
animation: spin 1s linear infinite;
|
|
603
|
+
margin-bottom: 1rem;
|
|
604
|
+
}
|
|
605
|
+
@keyframes spin {
|
|
606
|
+
to {
|
|
607
|
+
transform: rotate(360deg);
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
.personhood-info {
|
|
611
|
+
margin-bottom: 2rem;
|
|
612
|
+
padding: 1.5rem;
|
|
613
|
+
background: #f0f9ff;
|
|
614
|
+
border-radius: 8px;
|
|
615
|
+
border-left: 4px solid #2563eb;
|
|
616
|
+
}
|
|
617
|
+
.personhood-info p {
|
|
618
|
+
margin: 0.75rem 0;
|
|
619
|
+
color: #374151;
|
|
620
|
+
line-height: 1.6;
|
|
621
|
+
}
|
|
622
|
+
.role-tag-container {
|
|
623
|
+
margin-top: 1rem;
|
|
624
|
+
padding: 1rem;
|
|
625
|
+
background: #f0f9ff;
|
|
626
|
+
border: 2px solid #bae6fd;
|
|
627
|
+
border-radius: 8px;
|
|
628
|
+
animation: fadeIn 0.3s ease-in;
|
|
629
|
+
min-height: 60px;
|
|
630
|
+
display: flex;
|
|
631
|
+
flex-direction: column;
|
|
632
|
+
justify-content: center;
|
|
633
|
+
}
|
|
634
|
+
.role-tag-label {
|
|
635
|
+
font-size: 0.875rem;
|
|
636
|
+
font-weight: 600;
|
|
637
|
+
color: #0369a1;
|
|
638
|
+
margin-bottom: 0.5rem;
|
|
639
|
+
}
|
|
640
|
+
.role-tag {
|
|
641
|
+
display: inline-block;
|
|
642
|
+
padding: 0.5rem 1rem;
|
|
643
|
+
background: #2563eb;
|
|
644
|
+
color: white;
|
|
645
|
+
border-radius: 6px;
|
|
646
|
+
font-weight: 600;
|
|
647
|
+
font-size: 0.875rem;
|
|
648
|
+
width: fit-content;
|
|
649
|
+
}
|
|
650
|
+
.role-tag-loading {
|
|
651
|
+
display: flex;
|
|
652
|
+
align-items: center;
|
|
653
|
+
gap: 0.5rem;
|
|
654
|
+
}
|
|
655
|
+
.role-tag-spinner {
|
|
656
|
+
width: 20px;
|
|
657
|
+
height: 20px;
|
|
658
|
+
border: 2px solid #bae6fd;
|
|
659
|
+
border-top-color: #2563eb;
|
|
660
|
+
border-radius: 50%;
|
|
661
|
+
animation: spin 0.8s linear infinite;
|
|
662
|
+
}
|
|
663
|
+
@keyframes fadeIn {
|
|
664
|
+
from {
|
|
665
|
+
opacity: 0;
|
|
666
|
+
transform: translateY(-10px);
|
|
667
|
+
}
|
|
668
|
+
to {
|
|
669
|
+
opacity: 1;
|
|
670
|
+
transform: translateY(0);
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
/*# sourceMappingURL=index.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/components/auth/Auth.css","../src/components/membership/Membership.css","../src/components/profile/Profile.css"],"sourcesContent":[".auth-container {\n display: flex !important;\n justify-content: center !important;\n align-items: flex-start !important;\n min-height: calc(100vh - 200px) !important;\n padding: 2rem !important;\n margin-top: 2rem !important;\n width: 100% !important;\n}\n\n.auth-card {\n background: white !important;\n border-radius: 12px !important;\n padding: 3rem !important;\n max-width: 520px !important;\n width: 100% !important;\n box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;\n border: 1px solid #e5e7eb !important;\n margin: 0 auto !important;\n}\n\n.auth-card h1 {\n font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;\n margin: 0 0 1rem 0;\n font-size: 2rem;\n font-weight: 700;\n color: #1a1a1a;\n letter-spacing: -0.03em;\n line-height: 1.2;\n}\n\n.auth-description {\n color: #666;\n margin-bottom: 2rem;\n line-height: 1.6;\n font-size: 0.9375rem;\n}\n\n.auth-features {\n display: flex;\n flex-direction: column;\n gap: 1rem;\n margin-bottom: 2rem;\n}\n\n.feature-item {\n display: flex;\n align-items: center;\n gap: 0.75rem;\n color: #444;\n}\n\n.feature-icon {\n font-size: 1.5rem;\n}\n\n.username-section {\n margin-bottom: 1.5rem;\n}\n\n.username-label {\n display: block;\n color: #444;\n font-size: 0.875rem;\n font-weight: 500;\n margin-bottom: 0.5rem;\n}\n\n.username-input {\n width: 100%;\n padding: 0.875rem 1rem;\n border: 1px solid #d1d5db;\n border-radius: 8px;\n font-size: 1rem;\n color: #1a1a1a;\n background: white;\n transition: all 0.2s ease;\n box-sizing: border-box;\n}\n\n.username-input:focus {\n outline: none;\n border-color: #2563eb;\n box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);\n}\n\n.username-input:disabled {\n opacity: 0.6;\n cursor: not-allowed;\n background: #f9fafb;\n}\n\n.username-input::placeholder {\n color: #9ca3af;\n}\n\n.auth-button {\n width: 100% !important;\n padding: 0.875rem 1.5rem !important;\n font-size: 1rem !important;\n font-weight: 600 !important;\n border: none !important;\n border-radius: 8px !important;\n cursor: pointer !important;\n transition: all 0.2s ease !important;\n /* Override global button styles */\n background-color: transparent !important;\n color: inherit !important;\n font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;\n}\n\n.auth-button.primary {\n background: #2563eb !important;\n background-color: #2563eb !important;\n color: white !important;\n border: none !important;\n border-color: transparent !important;\n}\n\n.auth-button.primary:hover:not(:disabled) {\n background: #1d4ed8 !important;\n background-color: #1d4ed8 !important;\n}\n\n.auth-button.secondary {\n background: #f3f4f6;\n color: #1a1a1a;\n}\n\n.auth-button.secondary:hover:not(:disabled) {\n background: #e5e7eb;\n}\n\n.auth-button:disabled {\n opacity: 0.6;\n cursor: not-allowed;\n}\n\n.loading-state,\n.success-state {\n text-align: center;\n padding: 2rem 0;\n}\n\n.spinner {\n width: 48px;\n height: 48px;\n border: 4px solid #e5e7eb;\n border-top-color: #2563eb;\n border-radius: 50%;\n animation: spin 1s linear infinite;\n margin: 0 auto 1rem;\n}\n\n@keyframes spin {\n to {\n transform: rotate(360deg);\n }\n}\n\n.loading-hint {\n color: #666;\n font-size: 0.875rem;\n margin-top: 0.5rem;\n}\n\n.loading-hint-small {\n color: #888;\n font-size: 0.75rem;\n margin-top: 0.75rem;\n max-width: 400px;\n line-height: 1.4;\n}\n\n.success-icon {\n width: 64px;\n height: 64px;\n background: #10b981;\n color: white;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 2rem;\n font-weight: bold;\n margin: 0 auto 1rem;\n}\n\n.success-state p {\n margin: 0.5rem 0;\n color: #1a1a1a;\n}\n\n.success-hint {\n color: #666;\n font-size: 0.875rem;\n}\n\n.error-message {\n background: #fee2e2;\n color: #991b1b;\n padding: 0.875rem;\n border-radius: 6px;\n margin-bottom: 1rem;\n font-size: 0.875rem;\n}\n\n.error-message::selection {\n background: #dc2626;\n color: #ffffff;\n}\n\n.error-message::-moz-selection {\n background: #dc2626;\n color: #ffffff;\n}\n\n.error-message.small {\n font-size: 0.75rem;\n padding: 0.5rem;\n margin-bottom: 0.5rem;\n}\n\n.login-button-container {\n display: flex;\n flex-direction: column;\n align-items: flex-end;\n gap: 0.5rem;\n}\n\n",".membership-container {\n display: flex;\n justify-content: center;\n padding: 2rem;\n min-height: 60vh;\n}\n\n.membership-card {\n background: white;\n border-radius: 12px;\n padding: 2.5rem;\n max-width: 900px;\n width: 100%;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\n.membership-card h1 {\n margin: 0 0 1rem 0;\n font-size: 2rem;\n color: #1a1a1a;\n}\n\n.membership-description {\n color: #666;\n margin-bottom: 2rem;\n line-height: 1.6;\n}\n\n.save-message {\n padding: 0.875rem;\n border-radius: 6px;\n font-size: 0.875rem;\n margin-bottom: 1.5rem;\n}\n\n.save-message.success {\n background: #d1fae5;\n color: #065f46;\n}\n\n.save-message.error {\n background: #fee2e2;\n color: #991b1b;\n}\n\n.search-section,\n.members-section {\n margin-bottom: 3rem;\n padding-bottom: 2rem;\n border-bottom: 2px solid #e5e7eb;\n}\n\n.members-section:last-child {\n border-bottom: none;\n}\n\n.search-section h2,\n.members-section h2 {\n margin: 0 0 1.5rem 0;\n font-size: 1.5rem;\n color: #1a1a1a;\n}\n\n.search-form {\n display: flex;\n gap: 1rem;\n margin-bottom: 2rem;\n}\n\n.search-input {\n flex: 1;\n padding: 0.75rem;\n border: 2px solid #e5e7eb;\n border-radius: 6px;\n font-size: 1rem;\n font-family: inherit;\n transition: border-color 0.2s ease;\n}\n\n.search-input:focus {\n outline: none;\n border-color: #2563eb;\n}\n\n.search-input:disabled {\n background: #f3f4f6;\n cursor: not-allowed;\n}\n\n.search-button,\n.scanner-toggle {\n padding: 0.75rem 1.5rem;\n font-size: 1rem;\n font-weight: 600;\n background: #2563eb;\n color: white;\n border: none;\n border-radius: 8px;\n cursor: pointer;\n transition: all 0.2s ease;\n}\n\n.search-button:hover:not(:disabled),\n.scanner-toggle:hover:not(:disabled) {\n background: #1d4ed8;\n}\n\n.search-button:disabled,\n.scanner-toggle:disabled {\n opacity: 0.6;\n cursor: not-allowed;\n}\n\n.profiles-list,\n.members-list {\n display: flex;\n flex-direction: column;\n gap: 1rem;\n}\n\n.profiles-list h3,\n.members-list h3 {\n margin: 0 0 1rem 0;\n font-size: 1.25rem;\n color: #374151;\n}\n\n.profile-item,\n.member-item {\n display: flex;\n justify-content: space-between;\n align-items: center;\n gap: 1rem;\n padding: 1rem;\n border: 2px solid #e5e7eb;\n border-radius: 8px;\n background: #f9fafb;\n transition: all 0.2s ease;\n}\n\n@media (max-width: 640px) {\n .profile-item,\n .member-item {\n flex-direction: column;\n align-items: stretch;\n text-align: left;\n }\n\n .profile-item .member-button,\n .member-item .member-button {\n width: 100%;\n margin-top: 0.5rem;\n }\n}\n\n@media (max-width: 480px) {\n .search-form {\n flex-direction: column;\n }\n\n .search-input,\n .search-button,\n .scanner-toggle {\n width: 100%;\n }\n\n .search-button,\n .member-button {\n padding: 0.5rem 0.75rem;\n font-size: 0.9rem;\n }\n}\n\n.member-button {\n padding: 0.5rem 1rem;\n font-size: 0.875rem;\n font-weight: 600;\n border: none;\n border-radius: 6px;\n cursor: pointer;\n transition: all 0.2s ease;\n white-space: nowrap;\n}\n\n.profile-item:hover,\n.member-item:hover {\n border-color: #d1d5db;\n background: #f3f4f6;\n}\n\n.profile-info {\n display: flex;\n align-items: center;\n gap: 1rem;\n flex: 1;\n}\n\n.profile-avatar {\n width: 48px;\n height: 48px;\n border-radius: 50%;\n object-fit: cover;\n border: 2px solid #e5e7eb;\n}\n\n.profile-details {\n flex: 1;\n min-width: 0;\n}\n\n.profile-name {\n font-weight: 600;\n color: #1a1a1a;\n margin-bottom: 0.25rem;\n}\n\n.profile-pubkey {\n font-size: 0.875rem;\n color: #6b7280;\n font-family: monospace;\n margin-bottom: 0.25rem;\n}\n\n.profile-about {\n font-size: 0.875rem;\n color: #4b5563;\n margin-top: 0.5rem;\n line-height: 1.4;\n overflow: hidden;\n text-overflow: ellipsis;\n display: -webkit-box;\n -webkit-line-clamp: 2;\n -webkit-box-orient: vertical;\n}\n\n.profile-petname {\n font-size: 0.875rem;\n color: #059669;\n margin-top: 0.25rem;\n font-style: italic;\n}\n\n.member-button.add {\n background: #10b981;\n color: white;\n}\n\n.member-button.add:hover:not(:disabled) {\n background: #059669;\n}\n\n.member-button.remove {\n background: #ef4444;\n color: white;\n}\n\n.member-button.remove:hover:not(:disabled) {\n background: #dc2626;\n}\n\n.member-button:disabled {\n opacity: 0.6;\n cursor: not-allowed;\n}\n\n.empty-message {\n color: #6b7280;\n font-style: italic;\n padding: 2rem;\n text-align: center;\n background: #f9fafb;\n border-radius: 8px;\n border: 2px dashed #e5e7eb;\n}\n\n.loading-state {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding: 4rem 2rem;\n}\n\n.loading-state .spinner {\n width: 48px;\n height: 48px;\n border: 4px solid #e5e7eb;\n border-top-color: #2563eb;\n border-radius: 50%;\n animation: spin 1s linear infinite;\n margin-bottom: 1rem;\n}\n\n@keyframes spin {\n to {\n transform: rotate(360deg);\n }\n}\n\n.trust-info {\n margin-bottom: 2rem;\n padding: 1.5rem;\n background: #f0f9ff;\n border-radius: 8px;\n border-left: 4px solid #2563eb;\n}\n\n.trust-info h2 {\n margin: 0 0 1rem 0;\n font-size: 1.25rem;\n color: #1a1a1a;\n}\n\n.trust-info p {\n margin: 0.75rem 0;\n color: #374151;\n line-height: 1.6;\n}\n\n",".profile-container {\n display: flex;\n justify-content: center;\n padding: 2rem;\n min-height: 60vh;\n}\n\n.profile-card {\n background: white;\n border-radius: 12px;\n padding: 2.5rem;\n max-width: 600px;\n width: 100%;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\n.profile-card h1 {\n margin: 0 0 1rem 0;\n font-size: 2rem;\n color: #1a1a1a;\n}\n\n.profile-description {\n color: #666;\n margin-bottom: 2rem;\n line-height: 1.6;\n}\n\n.profile-form {\n display: flex;\n flex-direction: column;\n gap: 1.5rem;\n}\n\n.form-group {\n display: flex;\n flex-direction: column;\n gap: 0.5rem;\n}\n\n.form-group label {\n font-weight: 600;\n color: #374151;\n font-size: 0.875rem;\n}\n\n.form-group input,\n.form-group textarea {\n padding: 0.75rem;\n border: 2px solid #e5e7eb;\n border-radius: 6px;\n font-size: 1rem;\n font-family: inherit;\n transition: border-color 0.2s ease;\n}\n\n.form-group input:focus,\n.form-group textarea:focus {\n outline: none;\n border-color: #2563eb;\n}\n\n.form-group textarea {\n resize: vertical;\n min-height: 100px;\n}\n\n.form-actions {\n display: flex;\n gap: 1rem;\n}\n\n.save-button,\n.cancel-button {\n flex: 1;\n padding: 0.875rem 1.5rem;\n font-size: 1rem;\n font-weight: 600;\n border: none;\n border-radius: 8px;\n cursor: pointer;\n transition: all 0.2s ease;\n}\n\n.save-button {\n background: #2563eb;\n color: white;\n}\n\n.save-button:hover:not(:disabled) {\n background: #1d4ed8;\n}\n\n.save-button:disabled {\n opacity: 0.6;\n cursor: not-allowed;\n}\n\n.cancel-button {\n background: #f3f4f6;\n color: #1a1a1a;\n}\n\n.cancel-button:hover {\n background: #e5e7eb;\n}\n\n.save-message {\n padding: 0.875rem;\n border-radius: 6px;\n font-size: 0.875rem;\n}\n\n.save-message.success {\n background: #d1fae5;\n color: #065f46;\n}\n\n.save-message.error {\n background: #fee2e2;\n color: #991b1b;\n}\n\n.loading-state {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding: 4rem 2rem;\n}\n\n.loading-state .spinner {\n width: 48px;\n height: 48px;\n border: 4px solid #e5e7eb;\n border-top-color: #2563eb;\n border-radius: 50%;\n animation: spin 1s linear infinite;\n margin-bottom: 1rem;\n}\n\n@keyframes spin {\n to {\n transform: rotate(360deg);\n }\n}\n\n.personhood-info {\n margin-bottom: 2rem;\n padding: 1.5rem;\n background: #f0f9ff;\n border-radius: 8px;\n border-left: 4px solid #2563eb;\n}\n\n.personhood-info p {\n margin: 0.75rem 0;\n color: #374151;\n line-height: 1.6;\n}\n\n.role-tag-container {\n margin-top: 1rem;\n padding: 1rem;\n background: #f0f9ff;\n border: 2px solid #bae6fd;\n border-radius: 8px;\n animation: fadeIn 0.3s ease-in;\n min-height: 60px;\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n\n.role-tag-label {\n font-size: 0.875rem;\n font-weight: 600;\n color: #0369a1;\n margin-bottom: 0.5rem;\n}\n\n.role-tag {\n display: inline-block;\n padding: 0.5rem 1rem;\n background: #2563eb;\n color: white;\n border-radius: 6px;\n font-weight: 600;\n font-size: 0.875rem;\n width: fit-content;\n}\n\n.role-tag-loading {\n display: flex;\n align-items: center;\n gap: 0.5rem;\n}\n\n.role-tag-spinner {\n width: 20px;\n height: 20px;\n border: 2px solid #bae6fd;\n border-top-color: #2563eb;\n border-radius: 50%;\n animation: spin 0.8s linear infinite;\n}\n\n@keyframes fadeIn {\n from {\n opacity: 0;\n transform: translateY(-10px);\n }\n to {\n opacity: 1;\n transform: translateY(0);\n }\n}\n\n"],"mappings":"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","names":[]}
|