@keyflow2/keyflow-kit-store 0.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.
@@ -0,0 +1,969 @@
1
+ :root {
2
+ --store-bg: #f4f5f7;
3
+ --store-card: #ffffff;
4
+ --store-text: #121316;
5
+ --store-muted: #8f96a0;
6
+ --store-muted-2: #b4bac2;
7
+ --store-divider: rgba(18, 19, 22, 0.08);
8
+ --store-blue: #0b74ff;
9
+ --store-blue-soft: rgba(11, 116, 255, 0.12);
10
+ --store-danger: #ff3b30;
11
+ --store-warning: #ff9500;
12
+ --store-warning-soft: rgba(255, 149, 0, 0.14);
13
+ --store-shadow: 0 10px 24px rgba(18, 19, 22, 0.06);
14
+ --store-shadow-soft: 0 4px 14px rgba(18, 19, 22, 0.05);
15
+ --store-radius-xl: 24px;
16
+ --store-radius-lg: 18px;
17
+ --store-radius-md: 14px;
18
+ --store-radius-sm: 12px;
19
+ }
20
+
21
+ *,
22
+ *::before,
23
+ *::after {
24
+ box-sizing: border-box;
25
+ }
26
+
27
+ html,
28
+ body {
29
+ min-height: 100%;
30
+ }
31
+
32
+ body {
33
+ margin: 0;
34
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
35
+ background: transparent;
36
+ color: var(--store-text);
37
+ -webkit-font-smoothing: antialiased;
38
+ -moz-osx-font-smoothing: grayscale;
39
+ }
40
+
41
+ button,
42
+ input {
43
+ font: inherit;
44
+ }
45
+
46
+ [hidden] {
47
+ display: none !important;
48
+ }
49
+
50
+ [v-cloak] {
51
+ display: none;
52
+ }
53
+
54
+ .store-shell {
55
+ min-height: 100vh;
56
+ background: var(--store-bg);
57
+ border-radius: 26px;
58
+ padding: 16px 16px 10px;
59
+ }
60
+
61
+ .store-topbar {
62
+ display: flex;
63
+ align-items: center;
64
+ justify-content: space-between;
65
+ gap: 10px;
66
+ }
67
+
68
+ .store-tabs {
69
+ display: flex;
70
+ align-items: baseline;
71
+ gap: 20px;
72
+ }
73
+
74
+ .store-tab {
75
+ appearance: none;
76
+ border: 0;
77
+ background: transparent;
78
+ padding: 0;
79
+ margin: 0;
80
+ cursor: pointer;
81
+ font-size: 20px;
82
+ font-weight: 900;
83
+ letter-spacing: 0.2px;
84
+ color: #a8adb4;
85
+ }
86
+
87
+ .tab-badge {
88
+ display: inline-flex;
89
+ align-items: center;
90
+ justify-content: center;
91
+ min-width: 18px;
92
+ height: 18px;
93
+ padding: 0 6px;
94
+ margin-left: 8px;
95
+ border-radius: 999px;
96
+ background: var(--store-blue);
97
+ color: #ffffff;
98
+ font-size: 12px;
99
+ font-weight: 900;
100
+ line-height: 1;
101
+ }
102
+
103
+ .store-tab[aria-selected="true"] {
104
+ color: var(--store-text);
105
+ }
106
+
107
+ .store-actions {
108
+ display: flex;
109
+ align-items: center;
110
+ gap: 14px;
111
+ }
112
+
113
+ .icon-button {
114
+ appearance: none;
115
+ border: 0;
116
+ background: transparent;
117
+ padding: 0;
118
+ cursor: pointer;
119
+ width: 28px;
120
+ height: 28px;
121
+ color: #7b8088;
122
+ display: grid;
123
+ place-items: center;
124
+ }
125
+
126
+ .icon-button svg {
127
+ width: 20px;
128
+ height: 20px;
129
+ }
130
+
131
+ .search-topbar {
132
+ display: flex;
133
+ align-items: center;
134
+ gap: 12px;
135
+ }
136
+
137
+ .search-field {
138
+ flex: 1;
139
+ display: flex;
140
+ align-items: center;
141
+ gap: 10px;
142
+ height: 40px;
143
+ padding: 0 14px;
144
+ background: #ffffff;
145
+ border-radius: 22px;
146
+ box-shadow: 0 1px 0 rgba(18, 19, 22, 0.04);
147
+ }
148
+
149
+ .search-icon {
150
+ width: 18px;
151
+ height: 18px;
152
+ display: grid;
153
+ place-items: center;
154
+ color: #9aa1aa;
155
+ }
156
+
157
+ .search-icon svg {
158
+ width: 18px;
159
+ height: 18px;
160
+ }
161
+
162
+ .search-field input {
163
+ flex: 1;
164
+ border: 0;
165
+ background: transparent;
166
+ outline: none;
167
+ font-size: 14px;
168
+ color: var(--store-text);
169
+ }
170
+
171
+ .search-field input::placeholder {
172
+ color: #aab0b8;
173
+ }
174
+
175
+ .text-button {
176
+ appearance: none;
177
+ border: 0;
178
+ background: transparent;
179
+ padding: 6px 4px;
180
+ cursor: pointer;
181
+ font-size: 15px;
182
+ font-weight: 700;
183
+ color: var(--store-blue);
184
+ }
185
+
186
+ .text-button--disabled {
187
+ cursor: default;
188
+ color: #b9bec6;
189
+ }
190
+
191
+ .store-main {
192
+ padding-top: 8px;
193
+ }
194
+
195
+ .store-list {
196
+ display: flex;
197
+ flex-direction: column;
198
+ overflow: visible;
199
+ padding-top: 12px;
200
+ padding-bottom: 8px;
201
+ gap: 16px;
202
+ }
203
+
204
+ .empty {
205
+ padding: 18px 16px;
206
+ border-radius: var(--store-radius-xl);
207
+ background: rgba(255, 255, 255, 0.72);
208
+ box-shadow: var(--store-shadow-soft);
209
+ font-size: 13px;
210
+ font-weight: 900;
211
+ color: #9aa1aa;
212
+ text-align: center;
213
+ }
214
+
215
+ .store-pager {
216
+ height: 18px;
217
+ display: flex;
218
+ align-items: center;
219
+ justify-content: center;
220
+ gap: 8px;
221
+ padding-top: 4px;
222
+ }
223
+
224
+ .pager-dot {
225
+ appearance: none;
226
+ border: 0;
227
+ padding: 0;
228
+ cursor: pointer;
229
+ width: 6px;
230
+ height: 6px;
231
+ border-radius: 999px;
232
+ background: rgba(18, 19, 22, 0.18);
233
+ }
234
+
235
+ .pager-dot[aria-selected="true"] {
236
+ width: 22px;
237
+ background: var(--store-blue);
238
+ }
239
+
240
+ .kit-card {
241
+ position: relative;
242
+ display: flex;
243
+ align-items: center;
244
+ gap: 12px;
245
+ padding: 13px 13px;
246
+ border-radius: var(--store-radius-xl);
247
+ background: var(--store-card);
248
+ box-shadow: var(--store-shadow-soft);
249
+ }
250
+
251
+ .kit-icon {
252
+ width: 52px;
253
+ height: 52px;
254
+ border-radius: 15px;
255
+ display: grid;
256
+ place-items: center;
257
+ color: #ffffff;
258
+ font-size: 22px;
259
+ font-weight: 900;
260
+ flex: 0 0 auto;
261
+ overflow: hidden;
262
+ }
263
+
264
+ .kit-icon img {
265
+ width: 100%;
266
+ height: 100%;
267
+ object-fit: cover;
268
+ display: block;
269
+ }
270
+
271
+ .kit-icon--meme {
272
+ background: linear-gradient(135deg, #fde7c0 0%, #f6d8d8 60%, #f2d2ff 100%);
273
+ color: #ff4d7d;
274
+ }
275
+
276
+ .kit-icon--ai {
277
+ background: linear-gradient(135deg, #c8d5ff 0%, #e4eaff 100%);
278
+ color: #ff8a00;
279
+ }
280
+
281
+ .kit-icon--ocr {
282
+ background: linear-gradient(135deg, #cfe5ff 0%, #d8e9ff 100%);
283
+ color: #6b7b8c;
284
+ }
285
+
286
+ .kit-icon--clip {
287
+ background: linear-gradient(135deg, #eff3f7 0%, #ffffff 100%);
288
+ color: #ff8a00;
289
+ }
290
+
291
+ .kit-info {
292
+ flex: 1;
293
+ min-width: 0;
294
+ }
295
+
296
+ .kit-title {
297
+ font-size: 17px;
298
+ font-weight: 900;
299
+ margin: 0;
300
+ letter-spacing: 0.2px;
301
+ }
302
+
303
+ .kit-subline {
304
+ margin-top: 6px;
305
+ display: flex;
306
+ align-items: center;
307
+ gap: 8px;
308
+ min-width: 0;
309
+ }
310
+
311
+ .tag-row {
312
+ display: inline-flex;
313
+ align-items: center;
314
+ gap: 6px;
315
+ flex: 0 0 auto;
316
+ }
317
+
318
+ .tag {
319
+ display: inline-flex;
320
+ align-items: center;
321
+ justify-content: center;
322
+ padding: 2px 7px;
323
+ border-radius: 10px;
324
+ background: rgba(18, 19, 22, 0.06);
325
+ color: #6f7680;
326
+ font-size: 11px;
327
+ font-weight: 700;
328
+ flex: 0 0 auto;
329
+ }
330
+
331
+ .subtext {
332
+ font-size: 12px;
333
+ font-weight: 700;
334
+ color: #9aa1aa;
335
+ white-space: nowrap;
336
+ overflow: hidden;
337
+ text-overflow: ellipsis;
338
+ }
339
+
340
+ .kit-action {
341
+ appearance: none;
342
+ border: 0;
343
+ cursor: pointer;
344
+ border-radius: 999px;
345
+ padding: 7px 12px;
346
+ font-size: 13px;
347
+ font-weight: 900;
348
+ flex: 0 0 auto;
349
+ }
350
+
351
+ .kit-action--get {
352
+ background: var(--store-blue);
353
+ color: #ffffff;
354
+ }
355
+
356
+ .kit-action--open {
357
+ background: rgba(18, 19, 22, 0.06);
358
+ color: #6e7580;
359
+ }
360
+
361
+ .ribbon {
362
+ position: absolute;
363
+ top: 0;
364
+ right: 0;
365
+ height: 24px;
366
+ min-width: 48px;
367
+ padding: 0 10px;
368
+ border-top-right-radius: var(--store-radius-xl);
369
+ border-bottom-left-radius: 14px;
370
+ background: #f6b400;
371
+ color: #ffffff;
372
+ font-size: 11px;
373
+ font-weight: 900;
374
+ display: flex;
375
+ align-items: center;
376
+ justify-content: center;
377
+ }
378
+
379
+ .ribbon--update {
380
+ background: var(--store-blue);
381
+ }
382
+
383
+ .sub-topbar {
384
+ display: flex;
385
+ align-items: center;
386
+ justify-content: space-between;
387
+ gap: 8px;
388
+ padding-top: 2px;
389
+ }
390
+
391
+ .sub-title {
392
+ flex: 1;
393
+ text-align: center;
394
+ font-size: 20px;
395
+ font-weight: 900;
396
+ letter-spacing: 0.2px;
397
+ }
398
+
399
+ .sub-spacer {
400
+ width: 44px;
401
+ height: 44px;
402
+ }
403
+
404
+ .back-button {
405
+ appearance: none;
406
+ border: 0;
407
+ background: transparent;
408
+ width: 44px;
409
+ height: 44px;
410
+ color: var(--store-blue);
411
+ display: grid;
412
+ place-items: center;
413
+ cursor: pointer;
414
+ }
415
+
416
+ .back-button svg {
417
+ width: 24px;
418
+ height: 24px;
419
+ }
420
+
421
+ .settings-section {
422
+ padding-top: 18px;
423
+ }
424
+
425
+ .settings-label {
426
+ font-size: 16px;
427
+ font-weight: 900;
428
+ color: #8f96a0;
429
+ margin-bottom: 12px;
430
+ }
431
+
432
+ .settings-list {
433
+ display: flex;
434
+ flex-direction: column;
435
+ gap: 12px;
436
+ }
437
+
438
+ .settings-item {
439
+ background: #ffffff;
440
+ border-radius: var(--store-radius-xl);
441
+ box-shadow: var(--store-shadow-soft);
442
+ padding: 14px 16px;
443
+ display: flex;
444
+ align-items: center;
445
+ justify-content: space-between;
446
+ gap: 12px;
447
+ }
448
+
449
+ .settings-url {
450
+ font-size: 16px;
451
+ font-weight: 800;
452
+ color: #16171a;
453
+ overflow: hidden;
454
+ text-overflow: ellipsis;
455
+ white-space: nowrap;
456
+ }
457
+
458
+ .settings-remove {
459
+ appearance: none;
460
+ border: 0;
461
+ background: transparent;
462
+ padding: 6px 0;
463
+ font-size: 16px;
464
+ font-weight: 900;
465
+ color: var(--store-danger);
466
+ cursor: pointer;
467
+ }
468
+
469
+ .settings-row {
470
+ display: flex;
471
+ align-items: center;
472
+ gap: 12px;
473
+ margin-top: 14px;
474
+ }
475
+
476
+ .settings-input {
477
+ flex: 1;
478
+ height: 48px;
479
+ border: 0;
480
+ outline: none;
481
+ padding: 0 16px;
482
+ border-radius: var(--store-radius-xl);
483
+ background: #ffffff;
484
+ box-shadow: var(--store-shadow-soft);
485
+ font-size: 16px;
486
+ font-weight: 800;
487
+ }
488
+
489
+ .settings-input::placeholder {
490
+ font-weight: 800;
491
+ color: #b3b9c1;
492
+ }
493
+
494
+ .pill {
495
+ appearance: none;
496
+ border: 0;
497
+ cursor: pointer;
498
+ height: 48px;
499
+ padding: 0 18px;
500
+ border-radius: 999px;
501
+ font-size: 16px;
502
+ font-weight: 900;
503
+ }
504
+
505
+ .pill--primary {
506
+ background: var(--store-blue);
507
+ color: #ffffff;
508
+ }
509
+
510
+ .danger-link {
511
+ appearance: none;
512
+ border: 0;
513
+ background: transparent;
514
+ margin-top: 18px;
515
+ padding: 8px 4px;
516
+ font-size: 16px;
517
+ font-weight: 900;
518
+ color: var(--store-danger);
519
+ cursor: pointer;
520
+ text-align: left;
521
+ }
522
+
523
+ .import-section {
524
+ padding-top: 18px;
525
+ display: flex;
526
+ flex-direction: column;
527
+ gap: 18px;
528
+ }
529
+
530
+ .import-input {
531
+ height: 54px;
532
+ border: 0;
533
+ outline: none;
534
+ padding: 0 16px;
535
+ border-radius: var(--store-radius-xl);
536
+ background: rgba(18, 19, 22, 0.06);
537
+ font-size: 18px;
538
+ font-weight: 800;
539
+ color: var(--store-text);
540
+ }
541
+
542
+ .import-input::placeholder {
543
+ color: #b3b9c1;
544
+ font-weight: 800;
545
+ }
546
+
547
+ .primary-wide {
548
+ appearance: none;
549
+ border: 0;
550
+ cursor: pointer;
551
+ height: 62px;
552
+ border-radius: 26px;
553
+ background: var(--store-blue);
554
+ color: #ffffff;
555
+ font-size: 18px;
556
+ font-weight: 900;
557
+ letter-spacing: 0.2px;
558
+ }
559
+
560
+ .secondary-wide {
561
+ appearance: none;
562
+ border: 0;
563
+ cursor: pointer;
564
+ height: 62px;
565
+ border-radius: 26px;
566
+ background: #ffffff;
567
+ box-shadow: var(--store-shadow-soft);
568
+ color: #111216;
569
+ font-size: 18px;
570
+ font-weight: 900;
571
+ display: flex;
572
+ align-items: center;
573
+ justify-content: center;
574
+ gap: 12px;
575
+ }
576
+
577
+ .secondary-wide .plus {
578
+ font-size: 22px;
579
+ font-weight: 900;
580
+ line-height: 1;
581
+ }
582
+
583
+ .or-divider {
584
+ display: flex;
585
+ align-items: center;
586
+ gap: 14px;
587
+ color: #9aa1aa;
588
+ font-weight: 900;
589
+ justify-content: center;
590
+ }
591
+
592
+ .or-divider::before,
593
+ .or-divider::after {
594
+ content: "";
595
+ flex: 1;
596
+ height: 1px;
597
+ background: rgba(18, 19, 22, 0.12);
598
+ }
599
+
600
+ .detail-topbar {
601
+ display: flex;
602
+ align-items: center;
603
+ justify-content: space-between;
604
+ gap: 8px;
605
+ }
606
+
607
+ .detail-scroll {
608
+ overflow: visible;
609
+ }
610
+
611
+ .detail-back {
612
+ appearance: none;
613
+ border: 0;
614
+ background: transparent;
615
+ padding: 6px 4px;
616
+ cursor: pointer;
617
+ color: var(--store-blue);
618
+ font-size: 15px;
619
+ font-weight: 900;
620
+ display: inline-flex;
621
+ align-items: center;
622
+ gap: 6px;
623
+ }
624
+
625
+ .detail-back svg {
626
+ width: 20px;
627
+ height: 20px;
628
+ }
629
+
630
+ .detail-more {
631
+ width: 28px;
632
+ height: 28px;
633
+ border-radius: 999px;
634
+ background: #ffffff;
635
+ box-shadow: var(--store-shadow);
636
+ }
637
+
638
+ .detail-header {
639
+ display: flex;
640
+ align-items: center;
641
+ gap: 12px;
642
+ padding: 8px 0 6px;
643
+ }
644
+
645
+ .detail-icon {
646
+ width: 68px;
647
+ height: 68px;
648
+ border-radius: 16px;
649
+ background: linear-gradient(135deg, #c8d5ff 0%, #e9efff 100%);
650
+ display: grid;
651
+ place-items: center;
652
+ font-size: 26px;
653
+ font-weight: 900;
654
+ color: #ff8a00;
655
+ overflow: hidden;
656
+ }
657
+
658
+ .detail-icon img {
659
+ width: 100%;
660
+ height: 100%;
661
+ object-fit: cover;
662
+ display: block;
663
+ }
664
+
665
+ .detail-headline {
666
+ flex: 1;
667
+ min-width: 0;
668
+ }
669
+
670
+ .detail-title-row {
671
+ display: flex;
672
+ align-items: center;
673
+ gap: 10px;
674
+ min-width: 0;
675
+ }
676
+
677
+ .detail-title {
678
+ font-size: 20px;
679
+ font-weight: 900;
680
+ margin: 0;
681
+ letter-spacing: 0.2px;
682
+ white-space: nowrap;
683
+ overflow: hidden;
684
+ text-overflow: ellipsis;
685
+ }
686
+
687
+ .detail-badge {
688
+ flex: 0 0 auto;
689
+ padding: 3px 9px;
690
+ border-radius: 999px;
691
+ background: var(--store-warning-soft);
692
+ color: #ff7a00;
693
+ font-size: 12px;
694
+ font-weight: 900;
695
+ }
696
+
697
+ .detail-meta {
698
+ margin-top: 5px;
699
+ display: flex;
700
+ align-items: center;
701
+ gap: 8px;
702
+ color: #9aa1aa;
703
+ font-size: 13px;
704
+ font-weight: 800;
705
+ }
706
+
707
+ .verified {
708
+ width: 18px;
709
+ height: 18px;
710
+ display: inline-flex;
711
+ align-items: center;
712
+ justify-content: center;
713
+ }
714
+
715
+ .verified svg {
716
+ width: 18px;
717
+ height: 18px;
718
+ }
719
+
720
+ .segmented {
721
+ margin-top: 8px;
722
+ background: rgba(18, 19, 22, 0.08);
723
+ border-radius: 18px;
724
+ padding: 4px;
725
+ display: flex;
726
+ gap: 4px;
727
+ }
728
+
729
+ .segment {
730
+ appearance: none;
731
+ border: 0;
732
+ background: transparent;
733
+ cursor: pointer;
734
+ flex: 1;
735
+ border-radius: 14px;
736
+ padding: 10px 0;
737
+ font-size: 14px;
738
+ font-weight: 900;
739
+ color: #8f96a0;
740
+ }
741
+
742
+ .segment[aria-selected="true"] {
743
+ background: #ffffff;
744
+ color: #121316;
745
+ box-shadow: var(--store-shadow-soft);
746
+ }
747
+
748
+ .detail-body {
749
+ padding-top: 12px;
750
+ padding-bottom: 8px;
751
+ }
752
+
753
+ .detail-card {
754
+ background: #ffffff;
755
+ border-radius: var(--store-radius-xl);
756
+ box-shadow: var(--store-shadow-soft);
757
+ padding: 16px 16px;
758
+ }
759
+
760
+ .overview-card {
761
+ display: flex;
762
+ flex-direction: column;
763
+ gap: 18px;
764
+ }
765
+
766
+ .overview-text {
767
+ font-size: 14px;
768
+ font-weight: 800;
769
+ color: #43474f;
770
+ }
771
+
772
+ .version-row {
773
+ display: flex;
774
+ align-items: baseline;
775
+ justify-content: space-between;
776
+ gap: 12px;
777
+ }
778
+
779
+ .version-title {
780
+ font-size: 16px;
781
+ font-weight: 900;
782
+ color: var(--store-text);
783
+ }
784
+
785
+ .version-size {
786
+ font-size: 14px;
787
+ font-weight: 900;
788
+ color: #a9b0b8;
789
+ }
790
+
791
+ .version-note {
792
+ margin-top: 6px;
793
+ font-size: 12px;
794
+ font-weight: 800;
795
+ color: #9aa1aa;
796
+ }
797
+
798
+ .list-header {
799
+ display: flex;
800
+ align-items: center;
801
+ justify-content: space-between;
802
+ gap: 10px;
803
+ padding-bottom: 8px;
804
+ color: #9aa1aa;
805
+ font-size: 13px;
806
+ font-weight: 900;
807
+ }
808
+
809
+ .risk {
810
+ display: inline-flex;
811
+ align-items: center;
812
+ gap: 8px;
813
+ color: var(--store-danger);
814
+ font-weight: 900;
815
+ }
816
+
817
+ .risk svg {
818
+ width: 18px;
819
+ height: 18px;
820
+ }
821
+
822
+ .list-row {
823
+ display: flex;
824
+ align-items: center;
825
+ justify-content: space-between;
826
+ gap: 14px;
827
+ padding: 14px 0;
828
+ border-top: 1px solid rgba(18, 19, 22, 0.08);
829
+ font-size: 13px;
830
+ font-weight: 900;
831
+ color: #121316;
832
+ }
833
+
834
+ .row-dot {
835
+ width: 24px;
836
+ height: 24px;
837
+ border-radius: 999px;
838
+ background: #ffffff;
839
+ box-shadow: var(--store-shadow);
840
+ flex: 0 0 auto;
841
+ }
842
+
843
+ .rating-head {
844
+ display: flex;
845
+ align-items: center;
846
+ justify-content: space-between;
847
+ gap: 12px;
848
+ }
849
+
850
+ .rating-left {
851
+ display: flex;
852
+ align-items: baseline;
853
+ gap: 10px;
854
+ }
855
+
856
+ .rating-score {
857
+ font-size: 34px;
858
+ font-weight: 900;
859
+ letter-spacing: 0.2px;
860
+ }
861
+
862
+ .rating-meta {
863
+ font-size: 13px;
864
+ font-weight: 800;
865
+ color: #9aa1aa;
866
+ }
867
+
868
+ .rating-action {
869
+ appearance: none;
870
+ border: 0;
871
+ background: transparent;
872
+ cursor: pointer;
873
+ color: var(--store-blue);
874
+ font-size: 15px;
875
+ font-weight: 900;
876
+ }
877
+
878
+ .review-item {
879
+ margin-top: 14px;
880
+ background: rgba(18, 19, 22, 0.03);
881
+ border-radius: 16px;
882
+ padding: 13px 14px;
883
+ display: flex;
884
+ align-items: flex-start;
885
+ justify-content: space-between;
886
+ gap: 12px;
887
+ }
888
+
889
+ .review-name {
890
+ font-size: 13px;
891
+ font-weight: 900;
892
+ margin: 0;
893
+ }
894
+
895
+ .review-text {
896
+ margin-top: 6px;
897
+ font-size: 12px;
898
+ font-weight: 800;
899
+ color: #7d848e;
900
+ }
901
+
902
+ .stars {
903
+ color: #ff9500;
904
+ font-size: 15px;
905
+ letter-spacing: 1px;
906
+ font-weight: 900;
907
+ }
908
+
909
+ .link-row {
910
+ display: flex;
911
+ align-items: center;
912
+ justify-content: space-between;
913
+ gap: 12px;
914
+ padding: 14px 0;
915
+ font-size: 13px;
916
+ font-weight: 900;
917
+ color: var(--store-blue);
918
+ }
919
+
920
+ .link-row + .link-row {
921
+ border-top: 1px solid rgba(18, 19, 22, 0.08);
922
+ }
923
+
924
+ .link-row--danger {
925
+ color: var(--store-danger);
926
+ }
927
+
928
+ .link-arrow {
929
+ width: 18px;
930
+ height: 18px;
931
+ display: grid;
932
+ place-items: center;
933
+ flex: 0 0 auto;
934
+ }
935
+
936
+ .link-arrow svg {
937
+ width: 18px;
938
+ height: 18px;
939
+ }
940
+
941
+ .uninstall {
942
+ margin-top: 14px;
943
+ width: 100%;
944
+ height: 50px;
945
+ border-radius: 18px;
946
+ border: 0;
947
+ background: rgba(255, 59, 48, 0.08);
948
+ color: var(--store-danger);
949
+ font-size: 15px;
950
+ font-weight: 900;
951
+ cursor: pointer;
952
+ }
953
+
954
+ .toast {
955
+ position: fixed;
956
+ left: 50%;
957
+ bottom: 20px;
958
+ transform: translateX(-50%);
959
+ background: rgba(18, 19, 22, 0.92);
960
+ color: #ffffff;
961
+ padding: 10px 14px;
962
+ border-radius: 999px;
963
+ font-size: 12px;
964
+ font-weight: 800;
965
+ max-width: calc(100vw - 32px);
966
+ text-align: center;
967
+ box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
968
+ z-index: 10;
969
+ }