@hackthedev/dsync-shop 1.0.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/web/style.css ADDED
@@ -0,0 +1,928 @@
1
+ * {
2
+ margin: 0;
3
+ padding: 0;
4
+ box-sizing: border-box;
5
+ }
6
+
7
+ body {
8
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
9
+ background: #1e1e1e;
10
+ color: #dcddde;
11
+ display: flex;
12
+ min-height: 100vh;
13
+ }
14
+
15
+ .sidebar {
16
+ width: 240px;
17
+ background: #252525;
18
+ border-right: 1px solid #2e2e2e;
19
+ padding: 0;
20
+ position: fixed;
21
+ height: 100vh;
22
+ overflow-y: auto;
23
+ display: flex;
24
+ flex-direction: column;
25
+ }
26
+
27
+ .sidebar-top {
28
+ padding: 18px 16px 14px;
29
+ border-bottom: 1px solid #2e2e2e;
30
+ flex-shrink: 0;
31
+ }
32
+
33
+ .sidebar-back-btn {
34
+ display: inline-flex;
35
+ align-items: center;
36
+ gap: 7px;
37
+ background: transparent;
38
+ border: 1px solid #333;
39
+ color: #888;
40
+ padding: 7px 12px;
41
+ border-radius: 6px;
42
+ cursor: pointer;
43
+ font-size: 13px;
44
+ font-weight: 500;
45
+ transition: all 0.15s;
46
+ font-family: inherit;
47
+ }
48
+
49
+ .sidebar-back-btn:hover {
50
+ background: #242424;
51
+ color: #b9bbbe;
52
+ border-color: #333;
53
+ }
54
+
55
+ .sidebar-section-label {
56
+ padding: 20px 20px 8px;
57
+ font-size: 10px;
58
+ font-weight: 700;
59
+ color: #555;
60
+ text-transform: uppercase;
61
+ letter-spacing: 1.5px;
62
+ flex-shrink: 0;
63
+ }
64
+
65
+ .category-nav {
66
+ display: flex;
67
+ flex-direction: column;
68
+ gap: 2px;
69
+ padding: 0 10px;
70
+ flex: 1;
71
+ }
72
+
73
+ .category-btn {
74
+ background: transparent;
75
+ border: none;
76
+ color: #888;
77
+ padding: 9px 12px;
78
+ border-radius: 6px;
79
+ cursor: pointer;
80
+ font-size: 14px;
81
+ text-align: left;
82
+ transition: all 0.15s;
83
+ font-family: inherit;
84
+ font-weight: 500;
85
+ position: relative;
86
+ }
87
+
88
+ .category-btn:hover {
89
+ background: #242424;
90
+ color: #d0d0d0;
91
+ }
92
+
93
+ .category-btn.active {
94
+ background: rgba(88, 101, 242, 0.12);
95
+ color: #7289da;
96
+ }
97
+
98
+ .category-btn.active::before {
99
+ content: '';
100
+ position: absolute;
101
+ left: 0;
102
+ top: 50%;
103
+ transform: translateY(-50%);
104
+ width: 3px;
105
+ height: 16px;
106
+ background: #5865f2;
107
+ border-radius: 0 2px 2px 0;
108
+ }
109
+
110
+ .sidebar-bottom {
111
+ padding: 12px 10px 16px;
112
+ border-top: 1px solid #2e2e2e;
113
+ flex-shrink: 0;
114
+ }
115
+
116
+ .sidebar-admin-btn {
117
+ width: 100%;
118
+ display: flex;
119
+ align-items: center;
120
+ gap: 8px;
121
+ background: rgba(88, 101, 242, 0.08);
122
+ border: 1px solid rgba(88, 101, 242, 0.15);
123
+ color: #7289da;
124
+ padding: 9px 12px;
125
+ border-radius: 6px;
126
+ cursor: pointer;
127
+ font-size: 13px;
128
+ font-weight: 600;
129
+ transition: all 0.15s;
130
+ font-family: inherit;
131
+ }
132
+
133
+ .sidebar-admin-btn:hover {
134
+ background: rgba(88, 101, 242, 0.15);
135
+ border-color: rgba(88, 101, 242, 0.3);
136
+ color: #a0aff5;
137
+ }
138
+
139
+ .main-content {
140
+ margin-left: 240px;
141
+ flex: 1;
142
+ display: flex;
143
+ flex-direction: column;
144
+ }
145
+
146
+ header {
147
+ padding: 0 40px;
148
+ height: 72px;
149
+ background: #252525;
150
+ border-bottom: 1px solid #2e2e2e;
151
+ display: flex;
152
+ align-items: center;
153
+ }
154
+
155
+ .header-inner {
156
+ display: flex;
157
+ align-items: baseline;
158
+ gap: 14px;
159
+ }
160
+
161
+ header h1 {
162
+ font-size: 20px;
163
+ font-weight: 700;
164
+ color: #ffffff;
165
+ letter-spacing: -0.3px;
166
+ }
167
+
168
+ .header-sub {
169
+ font-size: 13px;
170
+ color: #555;
171
+ font-weight: 400;
172
+ }
173
+
174
+ .container {
175
+ max-width: 1400px;
176
+ margin: 0 auto;
177
+ padding: 40px 20px;
178
+ width: 100%;
179
+ }
180
+
181
+ .products {
182
+ display: grid;
183
+ grid-template-columns: repeat(4, 1fr);
184
+ gap: 25px;
185
+ max-width: 1200px;
186
+ margin: 0 auto;
187
+ }
188
+
189
+ .product {
190
+ background: #2a2a2a;
191
+ border-radius: 8px;
192
+ border: 1px solid #3a3a3a;
193
+ overflow: hidden;
194
+ transition: all 0.3s;
195
+ }
196
+
197
+ .product:hover {
198
+ transform: translateY(-4px);
199
+ border-color: #5865f2;
200
+ box-shadow: 0 4px 12px rgba(88, 101, 242, 0.2);
201
+ }
202
+
203
+ .product-image {
204
+ width: 100%;
205
+ height: 180px;
206
+ background: #1e1e1e;
207
+ display: flex;
208
+ align-items: center;
209
+ justify-content: center;
210
+ overflow: hidden;
211
+ }
212
+
213
+ .product-image img {
214
+ width: 100%;
215
+ height: 100%;
216
+ object-fit: cover;
217
+ }
218
+
219
+ .product-info {
220
+ padding: 18px;
221
+ }
222
+
223
+ .product-title {
224
+ font-size: 16px;
225
+ font-weight: bold;
226
+ color: #ffffff;
227
+ margin-bottom: 8px;
228
+ }
229
+
230
+ .product-description {
231
+ font-size: 13px;
232
+ color: #b9bbbe;
233
+ line-height: 1.4;
234
+ margin-bottom: 12px;
235
+ min-height: 55px;
236
+ }
237
+
238
+ .product-footer {
239
+ padding-top: 12px;
240
+ border-top: 1px solid #3a3a3a;
241
+ }
242
+
243
+ .product-price {
244
+ font-size: 20px;
245
+ font-weight: bold;
246
+ color: #ffffff;
247
+ margin-bottom: 12px;
248
+ }
249
+
250
+ .payment-buttons {
251
+ display: flex;
252
+ gap: 8px;
253
+ }
254
+
255
+ .btn-payment {
256
+ flex: 1;
257
+ border: none;
258
+ padding: 8px;
259
+ border-radius: 6px;
260
+ font-size: 12px;
261
+ font-weight: bold;
262
+ cursor: pointer;
263
+ transition: all 0.2s;
264
+ }
265
+
266
+ .btn-paypal {
267
+ background: #0070ba;
268
+ color: white;
269
+ }
270
+
271
+ .btn-paypal:hover {
272
+ background: #005ea6;
273
+ }
274
+
275
+ .btn-crypto {
276
+ background: #f7931a;
277
+ color: white;
278
+ }
279
+
280
+ .btn-crypto:hover {
281
+ background: #e08316;
282
+ }
283
+
284
+ .modal {
285
+ display: none;
286
+ position: fixed;
287
+ top: 0;
288
+ left: 0;
289
+ width: 100%;
290
+ height: 100%;
291
+ background: rgba(0, 0, 0, 0.8);
292
+ z-index: 2000;
293
+ align-items: center;
294
+ justify-content: center;
295
+ }
296
+
297
+ .modal.show {
298
+ display: flex;
299
+ }
300
+
301
+ .modal-content {
302
+ background: #2a2a2a;
303
+ border: 1px solid #3a3a3a;
304
+ border-radius: 8px;
305
+ padding: 30px;
306
+ max-width: 500px;
307
+ width: 90%;
308
+ max-height: 80vh;
309
+ overflow-y: auto;
310
+ }
311
+
312
+ .modal-header {
313
+ font-size: 20px;
314
+ font-weight: bold;
315
+ color: #ffffff;
316
+ margin-bottom: 20px;
317
+ }
318
+
319
+ .modal-body {
320
+ color: #b9bbbe;
321
+ line-height: 1.6;
322
+ margin-bottom: 20px;
323
+ }
324
+
325
+ .modal-footer {
326
+ display: flex;
327
+ gap: 10px;
328
+ justify-content: flex-end;
329
+ }
330
+
331
+ .btn-modal {
332
+ padding: 10px 20px;
333
+ border: none;
334
+ border-radius: 6px;
335
+ font-size: 14px;
336
+ font-weight: bold;
337
+ cursor: pointer;
338
+ transition: all 0.2s;
339
+ }
340
+
341
+ .btn-cancel {
342
+ background: transparent;
343
+ border: 1px solid #3a3a3a;
344
+ color: #dcddde;
345
+ }
346
+
347
+ .btn-cancel:hover {
348
+ background: #3a3a3a;
349
+ }
350
+
351
+ .btn-confirm {
352
+ background: #5865f2;
353
+ color: white;
354
+ }
355
+
356
+ .btn-confirm:hover {
357
+ background: #4752c4;
358
+ }
359
+
360
+ .loading, .error {
361
+ text-align: center;
362
+ padding: 40px;
363
+ }
364
+
365
+ .loading {
366
+ color: #b9bbbe;
367
+ }
368
+
369
+ .error {
370
+ color: #ed4245;
371
+ }
372
+
373
+ .form-group {
374
+ margin-bottom: 20px;
375
+ }
376
+
377
+ .form-group label {
378
+ display: block;
379
+ color: #ffffff;
380
+ margin-bottom: 8px;
381
+ font-size: 14px;
382
+ font-weight: 600;
383
+ }
384
+
385
+ .form-group input,
386
+ .form-group textarea,
387
+ .form-group select {
388
+ width: 100%;
389
+ background: #1e1e1e;
390
+ border: 1px solid #3a3a3a;
391
+ color: #dcddde;
392
+ padding: 12px;
393
+ border-radius: 6px;
394
+ font-size: 14px;
395
+ font-family: inherit;
396
+ transition: all 0.2s;
397
+ }
398
+
399
+ .form-group input:focus,
400
+ .form-group textarea:focus,
401
+ .form-group select:focus {
402
+ outline: none;
403
+ border-color: #5865f2;
404
+ }
405
+
406
+ .form-group textarea {
407
+ min-height: 100px;
408
+ resize: vertical;
409
+ }
410
+
411
+ .action-params-wrapper {
412
+ margin-top: 8px;
413
+ display: flex;
414
+ flex-direction: column;
415
+ gap: 12px;
416
+ }
417
+
418
+ .action-param-field label {
419
+ font-size: 12px;
420
+ color: #b9bbbe;
421
+ font-weight: 400;
422
+ margin-bottom: 6px;
423
+ }
424
+
425
+ .action-params-none {
426
+ font-size: 13px;
427
+ color: #555;
428
+ font-style: italic;
429
+ }
430
+
431
+ /* ---- admin panel ---- */
432
+
433
+ .admin-panel {
434
+ position: fixed;
435
+ top: 0;
436
+ right: 0;
437
+ width: 720px;
438
+ max-width: 95vw;
439
+ height: 100vh;
440
+ background: #181818;
441
+ border-left: 1px solid #2a2a2a;
442
+ z-index: 3000;
443
+ overflow: hidden;
444
+ display: none;
445
+ flex-direction: column;
446
+ box-shadow: -12px 0 40px rgba(0, 0, 0, 0.6);
447
+ animation: slide-in 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
448
+ }
449
+
450
+ @keyframes slide-in {
451
+ from { transform: translateX(100%); opacity: 0; }
452
+ to { transform: translateX(0); opacity: 1; }
453
+ }
454
+
455
+ .admin-panel.show {
456
+ display: flex;
457
+ }
458
+
459
+ .admin-overlay {
460
+ display: none;
461
+ position: fixed;
462
+ inset: 0;
463
+ background: rgba(0, 0, 0, 0.6);
464
+ z-index: 2999;
465
+ backdrop-filter: blur(2px);
466
+ }
467
+
468
+ .admin-overlay.show {
469
+ display: block;
470
+ }
471
+
472
+ .admin-topbar {
473
+ display: flex;
474
+ align-items: center;
475
+ justify-content: space-between;
476
+ padding: 0 24px;
477
+ height: 60px;
478
+ border-bottom: 1px solid #242424;
479
+ background: #1a1a1a;
480
+ flex-shrink: 0;
481
+ }
482
+
483
+ .admin-topbar-left {
484
+ display: flex;
485
+ align-items: center;
486
+ gap: 12px;
487
+ }
488
+
489
+ .admin-topbar-icon {
490
+ width: 32px;
491
+ height: 32px;
492
+ background: #5865f2;
493
+ border-radius: 8px;
494
+ display: flex;
495
+ align-items: center;
496
+ justify-content: center;
497
+ }
498
+
499
+ .admin-topbar-icon svg {
500
+ color: white;
501
+ }
502
+
503
+ .admin-topbar h1 {
504
+ font-size: 16px;
505
+ font-weight: 700;
506
+ color: #ffffff;
507
+ letter-spacing: 0.2px;
508
+ }
509
+
510
+ .admin-topbar-right {
511
+ display: flex;
512
+ align-items: center;
513
+ gap: 8px;
514
+ }
515
+
516
+ .admin-close-btn {
517
+ background: transparent;
518
+ color: #666;
519
+ border: 1px solid #2a2a2a;
520
+ width: 32px;
521
+ height: 32px;
522
+ border-radius: 6px;
523
+ cursor: pointer;
524
+ display: flex;
525
+ align-items: center;
526
+ justify-content: center;
527
+ transition: all 0.15s;
528
+ font-size: 18px;
529
+ line-height: 1;
530
+ }
531
+
532
+ .admin-close-btn:hover {
533
+ background: #2a2a2a;
534
+ color: #dcddde;
535
+ border-color: #3a3a3a;
536
+ }
537
+
538
+ .admin-tabs {
539
+ display: flex;
540
+ gap: 2px;
541
+ padding: 12px 24px 0;
542
+ border-bottom: 1px solid #242424;
543
+ background: #1a1a1a;
544
+ flex-shrink: 0;
545
+ }
546
+
547
+ .tab-btn {
548
+ background: transparent;
549
+ border: none;
550
+ border-bottom: 2px solid transparent;
551
+ color: #666;
552
+ padding: 8px 16px 10px;
553
+ cursor: pointer;
554
+ transition: all 0.15s;
555
+ font-size: 13px;
556
+ font-weight: 600;
557
+ letter-spacing: 0.2px;
558
+ margin-bottom: -1px;
559
+ }
560
+
561
+ .tab-btn:hover {
562
+ color: #b9bbbe;
563
+ }
564
+
565
+ .tab-btn.active {
566
+ color: #5865f2;
567
+ border-bottom-color: #5865f2;
568
+ }
569
+
570
+ .tab-content {
571
+ display: none;
572
+ flex: 1;
573
+ overflow: hidden;
574
+ flex-direction: column;
575
+ }
576
+
577
+ .tab-content.active {
578
+ display: flex;
579
+ }
580
+
581
+ .tab-toolbar {
582
+ display: flex;
583
+ align-items: center;
584
+ justify-content: space-between;
585
+ padding: 16px 24px;
586
+ border-bottom: 1px solid #1e1e1e;
587
+ flex-shrink: 0;
588
+ gap: 12px;
589
+ }
590
+
591
+ .search-input-wrap {
592
+ position: relative;
593
+ flex: 1;
594
+ max-width: 280px;
595
+ }
596
+
597
+ .search-input-wrap svg {
598
+ position: absolute;
599
+ left: 10px;
600
+ top: 50%;
601
+ transform: translateY(-50%);
602
+ color: #555;
603
+ pointer-events: none;
604
+ }
605
+
606
+ .search-input-wrap input {
607
+ width: 100%;
608
+ background: #111;
609
+ border: 1px solid #2a2a2a;
610
+ color: #dcddde;
611
+ padding: 8px 12px 8px 34px;
612
+ border-radius: 6px;
613
+ font-size: 13px;
614
+ font-family: inherit;
615
+ transition: border-color 0.15s;
616
+ }
617
+
618
+ .search-input-wrap input:focus {
619
+ outline: none;
620
+ border-color: #5865f2;
621
+ }
622
+
623
+ .search-input-wrap input::placeholder {
624
+ color: #444;
625
+ }
626
+
627
+ .tab-toolbar-right {
628
+ display: flex;
629
+ align-items: center;
630
+ gap: 8px;
631
+ flex-shrink: 0;
632
+ }
633
+
634
+ .admin-list {
635
+ flex: 1;
636
+ overflow-y: auto;
637
+ padding: 12px 24px 24px;
638
+ display: flex;
639
+ flex-direction: column;
640
+ gap: 8px;
641
+ }
642
+
643
+ .admin-list::-webkit-scrollbar {
644
+ width: 6px;
645
+ }
646
+
647
+ .admin-list::-webkit-scrollbar-track {
648
+ background: transparent;
649
+ }
650
+
651
+ .admin-list::-webkit-scrollbar-thumb {
652
+ background: #2a2a2a;
653
+ border-radius: 3px;
654
+ }
655
+
656
+ .admin-list::-webkit-scrollbar-thumb:hover {
657
+ background: #3a3a3a;
658
+ }
659
+
660
+ .admin-item {
661
+ background: #1e1e1e;
662
+ border: 1px solid #242424;
663
+ border-radius: 10px;
664
+ padding: 14px 16px;
665
+ display: flex;
666
+ align-items: center;
667
+ gap: 14px;
668
+ transition: border-color 0.15s, background 0.15s;
669
+ }
670
+
671
+ .admin-item:hover {
672
+ border-color: #3a3a3a;
673
+ background: #202020;
674
+ }
675
+
676
+ .admin-item-thumb {
677
+ width: 52px;
678
+ height: 52px;
679
+ border-radius: 8px;
680
+ overflow: hidden;
681
+ flex-shrink: 0;
682
+ background: #111;
683
+ border: 1px solid #2a2a2a;
684
+ }
685
+
686
+ .admin-item-thumb img {
687
+ width: 100%;
688
+ height: 100%;
689
+ object-fit: cover;
690
+ }
691
+
692
+ .admin-item-icon {
693
+ width: 40px;
694
+ height: 40px;
695
+ border-radius: 8px;
696
+ background: #242424;
697
+ border: 1px solid #2a2a2a;
698
+ display: flex;
699
+ align-items: center;
700
+ justify-content: center;
701
+ flex-shrink: 0;
702
+ color: #666;
703
+ }
704
+
705
+ .admin-item-info {
706
+ flex: 1;
707
+ min-width: 0;
708
+ display: flex;
709
+ flex-direction: column;
710
+ gap: 6px;
711
+ }
712
+
713
+ .admin-item-header {
714
+ display: flex;
715
+ align-items: center;
716
+ gap: 10px;
717
+ flex-wrap: wrap;
718
+ }
719
+
720
+ .admin-item-header h3 {
721
+ color: #e8e8e8;
722
+ font-size: 14px;
723
+ font-weight: 600;
724
+ white-space: nowrap;
725
+ overflow: hidden;
726
+ text-overflow: ellipsis;
727
+ max-width: 200px;
728
+ }
729
+
730
+ .admin-item-badges {
731
+ display: flex;
732
+ gap: 6px;
733
+ flex-shrink: 0;
734
+ }
735
+
736
+ .badge {
737
+ display: inline-flex;
738
+ align-items: center;
739
+ padding: 2px 8px;
740
+ border-radius: 20px;
741
+ font-size: 11px;
742
+ font-weight: 700;
743
+ letter-spacing: 0.2px;
744
+ }
745
+
746
+ .badge-price {
747
+ background: rgba(88, 101, 242, 0.15);
748
+ color: #7289da;
749
+ border: 1px solid rgba(88, 101, 242, 0.25);
750
+ }
751
+
752
+ .badge-active {
753
+ background: rgba(59, 165, 93, 0.12);
754
+ color: #3ba55d;
755
+ border: 1px solid rgba(59, 165, 93, 0.25);
756
+ }
757
+
758
+ .badge-inactive {
759
+ background: rgba(237, 66, 69, 0.1);
760
+ color: #ed4245;
761
+ border: 1px solid rgba(237, 66, 69, 0.2);
762
+ }
763
+
764
+ .admin-item-meta {
765
+ display: flex;
766
+ flex-wrap: wrap;
767
+ gap: 6px;
768
+ align-items: center;
769
+ }
770
+
771
+ .meta-tag {
772
+ display: inline-flex;
773
+ align-items: center;
774
+ gap: 4px;
775
+ font-size: 11px;
776
+ color: #555;
777
+ background: #141414;
778
+ border: 1px solid #242424;
779
+ padding: 2px 8px;
780
+ border-radius: 4px;
781
+ }
782
+
783
+ .meta-tag svg {
784
+ flex-shrink: 0;
785
+ }
786
+
787
+ .meta-action {
788
+ color: #f7931a;
789
+ border-color: rgba(247, 147, 26, 0.2);
790
+ background: rgba(247, 147, 26, 0.05);
791
+ }
792
+
793
+ .admin-item-actions {
794
+ display: flex;
795
+ gap: 6px;
796
+ flex-shrink: 0;
797
+ }
798
+
799
+ .btn-edit {
800
+ background: rgba(88, 101, 242, 0.12);
801
+ color: #7289da;
802
+ border: 1px solid rgba(88, 101, 242, 0.2);
803
+ padding: 6px 14px;
804
+ border-radius: 6px;
805
+ cursor: pointer;
806
+ font-size: 12px;
807
+ font-weight: 600;
808
+ transition: all 0.15s;
809
+ white-space: nowrap;
810
+ }
811
+
812
+ .btn-edit:hover {
813
+ background: #5865f2;
814
+ color: white;
815
+ border-color: #5865f2;
816
+ }
817
+
818
+ .btn-delete {
819
+ background: transparent;
820
+ color: #666;
821
+ border: 1px solid #2a2a2a;
822
+ padding: 6px 14px;
823
+ border-radius: 6px;
824
+ cursor: pointer;
825
+ font-size: 12px;
826
+ font-weight: 600;
827
+ transition: all 0.15s;
828
+ white-space: nowrap;
829
+ }
830
+
831
+ .btn-delete:hover {
832
+ background: rgba(237, 66, 69, 0.1);
833
+ color: #ed4245;
834
+ border-color: rgba(237, 66, 69, 0.3);
835
+ }
836
+
837
+ .btn-add {
838
+ background: #3ba55d;
839
+ color: white;
840
+ border: none;
841
+ padding: 8px 16px;
842
+ border-radius: 6px;
843
+ cursor: pointer;
844
+ font-size: 13px;
845
+ font-weight: 600;
846
+ transition: background 0.15s;
847
+ display: inline-flex;
848
+ align-items: center;
849
+ gap: 6px;
850
+ white-space: nowrap;
851
+ }
852
+
853
+ .btn-add:hover {
854
+ background: #2d7d46;
855
+ }
856
+
857
+ .btn-add svg {
858
+ flex-shrink: 0;
859
+ }
860
+
861
+ .admin-empty {
862
+ text-align: center;
863
+ padding: 48px 24px;
864
+ color: #444;
865
+ font-size: 14px;
866
+ }
867
+
868
+ @media (max-width: 1400px) {
869
+ .products {
870
+ grid-template-columns: repeat(3, 1fr);
871
+ }
872
+ }
873
+
874
+ @media (max-width: 1024px) {
875
+ .products {
876
+ grid-template-columns: repeat(2, 1fr);
877
+ }
878
+ }
879
+
880
+ @media (max-width: 768px) {
881
+ .sidebar {
882
+ display: none;
883
+ }
884
+
885
+ .main-content {
886
+ margin-left: 0;
887
+ }
888
+
889
+ .products {
890
+ grid-template-columns: 1fr;
891
+ }
892
+
893
+ header {
894
+ padding: 0 20px;
895
+ height: 60px;
896
+ }
897
+
898
+ .header-sub {
899
+ display: none;
900
+ }
901
+
902
+ .admin-panel {
903
+ width: 100%;
904
+ max-width: 100%;
905
+ border-left: none;
906
+ }
907
+
908
+ .admin-topbar {
909
+ padding: 0 16px;
910
+ }
911
+
912
+ .search-input-wrap {
913
+ max-width: 100%;
914
+ }
915
+
916
+ .tab-toolbar {
917
+ flex-wrap: wrap;
918
+ padding: 12px 16px;
919
+ }
920
+
921
+ .admin-list {
922
+ padding: 12px 16px;
923
+ }
924
+
925
+ .admin-item-header h3 {
926
+ max-width: 140px;
927
+ }
928
+ }