desk-kit 2.0.9 → 2.1.2

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 (60) hide show
  1. package/dist/components/document/DocumentItem.js +274 -0
  2. package/dist/components/document/Documents.js +197 -0
  3. package/dist/components/document/extensions/ai.png +0 -0
  4. package/dist/components/document/extensions/avi.png +0 -0
  5. package/dist/components/document/extensions/css.png +0 -0
  6. package/dist/components/document/extensions/csv.png +0 -0
  7. package/dist/components/document/extensions/default.png +0 -0
  8. package/dist/components/document/extensions/dll.png +0 -0
  9. package/dist/components/document/extensions/doc.png +0 -0
  10. package/dist/components/document/extensions/eps.png +0 -0
  11. package/dist/components/document/extensions/exe.png +0 -0
  12. package/dist/components/document/extensions/gif.png +0 -0
  13. package/dist/components/document/extensions/html.png +0 -0
  14. package/dist/components/document/extensions/jpg.png +0 -0
  15. package/dist/components/document/extensions/js.png +0 -0
  16. package/dist/components/document/extensions/mov.png +0 -0
  17. package/dist/components/document/extensions/mp3.png +0 -0
  18. package/dist/components/document/extensions/mp4.png +0 -0
  19. package/dist/components/document/extensions/pdf.png +0 -0
  20. package/dist/components/document/extensions/php.png +0 -0
  21. package/dist/components/document/extensions/png.png +0 -0
  22. package/dist/components/document/extensions/ppt.png +0 -0
  23. package/dist/components/document/extensions/psd.png +0 -0
  24. package/dist/components/document/extensions/rar.png +0 -0
  25. package/dist/components/document/extensions/txt.png +0 -0
  26. package/dist/components/document/extensions/wav.png +0 -0
  27. package/dist/components/document/extensions/xls.png +0 -0
  28. package/dist/components/document/extensions/zip.png +0 -0
  29. package/dist/config/const.js +1 -1
  30. package/dist/context/UserContext.js +5 -0
  31. package/dist/index.js +17 -1
  32. package/dist/style.css +12 -0
  33. package/dist/styles/global.css +783 -0
  34. package/package.json +21 -11
  35. package/src/components/document/extensions/ai.png +0 -0
  36. package/src/components/document/extensions/avi.png +0 -0
  37. package/src/components/document/extensions/css.png +0 -0
  38. package/src/components/document/extensions/csv.png +0 -0
  39. package/src/components/document/extensions/default.png +0 -0
  40. package/src/components/document/extensions/dll.png +0 -0
  41. package/src/components/document/extensions/doc.png +0 -0
  42. package/src/components/document/extensions/eps.png +0 -0
  43. package/src/components/document/extensions/exe.png +0 -0
  44. package/src/components/document/extensions/gif.png +0 -0
  45. package/src/components/document/extensions/html.png +0 -0
  46. package/src/components/document/extensions/jpg.png +0 -0
  47. package/src/components/document/extensions/js.png +0 -0
  48. package/src/components/document/extensions/mov.png +0 -0
  49. package/src/components/document/extensions/mp3.png +0 -0
  50. package/src/components/document/extensions/mp4.png +0 -0
  51. package/src/components/document/extensions/pdf.png +0 -0
  52. package/src/components/document/extensions/php.png +0 -0
  53. package/src/components/document/extensions/png.png +0 -0
  54. package/src/components/document/extensions/ppt.png +0 -0
  55. package/src/components/document/extensions/psd.png +0 -0
  56. package/src/components/document/extensions/rar.png +0 -0
  57. package/src/components/document/extensions/txt.png +0 -0
  58. package/src/components/document/extensions/wav.png +0 -0
  59. package/src/components/document/extensions/xls.png +0 -0
  60. package/src/components/document/extensions/zip.png +0 -0
@@ -0,0 +1,783 @@
1
+ :root {
2
+ --main-color: #090c0f;
3
+ --primary-color: #0568fd;
4
+ --primary-color-light_20: #3c89fd;
5
+ --primary-color-light_80: #e3eefe;
6
+ --primary-color-dark_20: #0350c4;
7
+ --primary-color-dark_80: #000b1c;
8
+ --secondary-color: #17152b;
9
+ --secondary-color-light_20: #454455;
10
+ --aditional-color: #e76a4f;
11
+ --border-color: #707070;
12
+ --low-contrarst: #e0e0e2;
13
+ --low-contrarst-50: hsla(240, 3%, 88%, 0.5);
14
+ --low-contrarst-20: hsla(240, 3%, 88%, 0.2);
15
+ --mid-contrarst: #747380;
16
+ --border-radius: 5px;
17
+ --min-border-radius: 3px;
18
+ --font-regular: "Inter";
19
+ --font-medium: "Inter";
20
+ --font-bold: "Inter";
21
+ --error-color: #c72f37;
22
+ --warning-color: #eaad1c;
23
+ --success-color: #64bf4b;
24
+ --purple-color: #523395;
25
+ --font-size: 16px;
26
+ }
27
+
28
+ * {
29
+ box-sizing: border-box;
30
+ padding: 0;
31
+ margin: 0;
32
+ }
33
+
34
+ body {
35
+ margin: 0px;
36
+ padding: 0px;
37
+ font-family: Inter;
38
+ text-rendering: optimizeLegibility;
39
+ -webkit-font-smoothing: antialiased;
40
+ -moz-osx-font-smoothing: grayscale;
41
+ background-color: #f8fafd;
42
+ font-size: var(--font-size);
43
+ }
44
+
45
+ .box {
46
+ padding: 15px;
47
+ padding-top: 30px;
48
+ padding-bottom: 30px;
49
+ min-height: 200px;
50
+ border-radius: 10px;
51
+ }
52
+
53
+ .link {
54
+ color: #0568fd;
55
+ cursor: pointer;
56
+ text-decoration: underline;
57
+ font-size: 14px;
58
+ }
59
+
60
+ .wrapper {
61
+ width: 100%;
62
+ }
63
+
64
+ .wrapper .content {
65
+ width: 100%;
66
+ display: flex;
67
+ align-items: stretch;
68
+ flex-direction: row;
69
+ }
70
+
71
+ .body {
72
+ background-color: white;
73
+ width: 100%;
74
+ border-radius: 20px 0px 0px 0px;
75
+ min-height: calc(100vh - 80px);
76
+ }
77
+ @media all and (max-width: 768px) {
78
+ .body {
79
+ border-radius: 20px 20px 0px 0px;
80
+ margin-bottom: 80px;
81
+ }
82
+ }
83
+ .pincode-input-text {
84
+ font-family: Inter;
85
+ font-weight: bold;
86
+ font-size: 22px;
87
+ }
88
+ @media (prefers-color-scheme: dark) {
89
+ html {
90
+ color-scheme: dark;
91
+ }
92
+ }
93
+
94
+ @media (prefers-color-scheme: dark) {
95
+ .body {
96
+ background-color: #121212;
97
+ }
98
+ body {
99
+ background-color: #1b1b1b;
100
+ }
101
+ .pincode-input-text {
102
+ border-color: white !important;
103
+ }
104
+ }
105
+
106
+ .home_select {
107
+ list-style-type: none;
108
+ margin: 0px;
109
+ padding: 0px;
110
+ }
111
+ .home_select li a {
112
+ text-decoration: none;
113
+ color: inherit;
114
+ }
115
+ .home_select li {
116
+ padding: 15px;
117
+ border: 1px solid rgba(0, 0, 0, 0.13);
118
+ border-bottom: 0px;
119
+ }
120
+ .home_select li:first-child {
121
+ border-radius: 10px 10px 0px 0px;
122
+ }
123
+
124
+ .home_select li:last-child {
125
+ border-radius: 0px 0px 10px 10px;
126
+ border-bottom: 1px solid rgba(0, 0, 0, 0.13);
127
+ }
128
+
129
+ @media (prefers-color-scheme: dark) {
130
+ .home_select li {
131
+ border-color: rgba(255, 255, 255, 0.13);
132
+ }
133
+ .home_select li:last-child {
134
+ border-bottom: 1px solid rgba(255, 255, 255, 0.13);
135
+ }
136
+ }
137
+
138
+ .mapa-container {
139
+ position: relative;
140
+ }
141
+ .mapa-container:before {
142
+ position: absolute;
143
+ content: "";
144
+ background-color: black;
145
+ width: 1px;
146
+ left: 50%;
147
+ top: 0px;
148
+ bottom: 0px;
149
+ z-index: 1;
150
+ }
151
+ .mapa-container:after {
152
+ position: absolute;
153
+ content: "";
154
+ background-color: black;
155
+ height: 1px;
156
+ left: 0px;
157
+ right: 0px;
158
+ top: 50%;
159
+ z-index: 1;
160
+ }
161
+
162
+ /* .cropper-view-box,
163
+ .cropper-face {
164
+ border-radius: 50%;
165
+ }
166
+
167
+ .cropped-image {
168
+ border-radius: 50%;
169
+ } */
170
+
171
+ .drop-zone {
172
+ display: flex;
173
+ flex-direction: column;
174
+ align-items: center;
175
+ justify-content: center;
176
+ min-height: 150px;
177
+ border-radius: 10px;
178
+ padding: 15px;
179
+ border: 1px dashed var(--primary-color-light_20);
180
+ }
181
+
182
+ .drop-zone.isDragActive {
183
+ border-color: #000b1c;
184
+ }
185
+ .text-align-right {
186
+ text-align: right;
187
+ }
188
+ .text-align-center {
189
+ text-align: center;
190
+ }
191
+
192
+ .text-center {
193
+ text-align: center;
194
+ }
195
+ .folder-card {
196
+ width: 100%;
197
+ background-color: #e3eefe;
198
+ border-radius: 8px;
199
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
200
+ position: relative;
201
+ padding: 20px;
202
+ padding-left: 20px;
203
+ color: #333;
204
+ font-family: Arial, sans-serif;
205
+ min-height: 220px;
206
+ }
207
+
208
+ .folder-tab {
209
+ position: absolute;
210
+ left: 0px;
211
+ top: -16px;
212
+ width: 45%;
213
+ height: 30px;
214
+ background-color: #e3eefe;
215
+ border-radius: 5px 5px 0px 0px;
216
+ display: flex;
217
+ align-items: center;
218
+ justify-content: center;
219
+ font-weight: bold;
220
+ }
221
+
222
+ .folder-content {
223
+ margin-top: 0px;
224
+ }
225
+
226
+ .folder-style {
227
+ overflow: visible;
228
+ position: relative;
229
+ background-color: #e3eefe;
230
+ border: 1px solid #abccfe;
231
+ border-radius: 0px 10px 10px 10px;
232
+ }
233
+
234
+ .folder-style:before {
235
+ content: "";
236
+ position: absolute;
237
+ height: 30px;
238
+ top: -30px;
239
+ width: 200px;
240
+ background: #e3eefe;
241
+ border-radius: 10px 10px 0px 0px;
242
+ border-left: 1px solid #abccfe;
243
+ border-top: 1px solid #abccfe;
244
+ border-right: 1px solid #abccfe;
245
+ left: -1px;
246
+ }
247
+
248
+ .folder-min-height {
249
+ min-height: 120px;
250
+ }
251
+
252
+ .folder-style.selected {
253
+ border-color: #0568fd;
254
+ }
255
+
256
+ .folder-style.selected::before {
257
+ border-color: #0568fd;
258
+ }
259
+ .contentsearch fieldset {
260
+ border-radius: 30px;
261
+ }
262
+ .contentsearch select {
263
+ min-width: 138px;
264
+ }
265
+ .gray {
266
+ color: #454455;
267
+ }
268
+ .card-skyblue {
269
+ background-color: #f8fafd;
270
+ padding: 4px;
271
+ margin-top: 0px;
272
+ justify-content: space-between;
273
+ border-radius: 5px;
274
+ }
275
+ .bold {
276
+ font-weight: bold;
277
+ }
278
+ .date {
279
+ font-size: 12px;
280
+ padding: 0px;
281
+ line-height: 1.43;
282
+ margin: 0px;
283
+ display: flex;
284
+ align-items: center;
285
+ }
286
+ @media (prefers-color-scheme: dark) {
287
+ .folder-style {
288
+ background-color: initial !important;
289
+ border-color: initial !important;
290
+ border: 0px !important;
291
+ }
292
+ .folder-style::before {
293
+ border: 0px !important;
294
+ background: linear-gradient(
295
+ rgba(255, 255, 255, 0.05),
296
+ rgba(255, 255, 255, 0.05)
297
+ );
298
+ }
299
+ .folder-style.selected {
300
+ border-color: initial !important;
301
+ border: 1px solid white !important;
302
+ }
303
+ .folder-style.selected::before {
304
+ border-color: initial !important;
305
+ border: 1px solid white !important;
306
+ }
307
+ .gray {
308
+ color: initial !important;
309
+ }
310
+ .card-skyblue {
311
+ background-color: initial !important;
312
+ }
313
+ }
314
+
315
+ .table-row-draggable .icon-draggable {
316
+ display: none;
317
+ }
318
+
319
+ .table-row-draggable:hover .icon-draggable,
320
+ .table-row-draggable.isDragging .icon-draggable {
321
+ display: block;
322
+ }
323
+
324
+ .table-row-draggable:hover td {
325
+ border-bottom: 1px solid #0568fd !important;
326
+ }
327
+ .table-row-draggable:hover td:first-child {
328
+ border-bottom: 0px !important;
329
+ }
330
+ .table-row-draggable td:first-child {
331
+ position: relative;
332
+ }
333
+ .table-row-draggable td:first-child::after {
334
+ content: "";
335
+ position: absolute;
336
+ width: 4px;
337
+ height: 4px;
338
+ border-radius: 4px;
339
+ background-color: #e0e0e2;
340
+ bottom: 0px;
341
+ right: 50%;
342
+ }
343
+
344
+ .table-row-draggable.isDragging td:first-child::after {
345
+ display: none !important;
346
+ }
347
+ .add-item-table {
348
+ display: none;
349
+ position: absolute;
350
+ bottom: -10px;
351
+ width: 20px;
352
+ height: 20px;
353
+ left: 50%;
354
+ background-color: #0568fd;
355
+ border-radius: 50%;
356
+ border: 0px;
357
+ cursor: pointer;
358
+ }
359
+ .mar-3 {
360
+ margin-right: 8px;
361
+ }
362
+
363
+ .add-item-table::after {
364
+ content: "";
365
+ position: absolute;
366
+ width: 30px;
367
+ height: 1px;
368
+ background-color: #0568fd;
369
+ right: -30px;
370
+ top: calc(50%);
371
+ cursor: pointer;
372
+ }
373
+ .table-row-draggable:not():hover td,
374
+ .table-row-draggable.isDragging td {
375
+ background-color: #f8fafd;
376
+ }
377
+ .table-row-draggable.isDragging td {
378
+ border-bottom: 0px;
379
+ }
380
+
381
+ .table-row-draggable td:first-child {
382
+ border-radius: 10px 0px 0px 10px;
383
+ }
384
+ .table-row-draggable td:last-child {
385
+ border-radius: 0px 10px 10px 0px;
386
+ }
387
+ @media (prefers-color-scheme: dark) {
388
+ .table-row-draggable:hover td,
389
+ .table-row-draggable.isDragging td {
390
+ background-color: #111b22;
391
+ }
392
+ }
393
+ .table-row-draggable:hover td:first-child::after {
394
+ display: none;
395
+ }
396
+ .table-row-draggable:hover .add-item-table {
397
+ display: block;
398
+ }
399
+
400
+ .table-header td {
401
+ background-color: #012254;
402
+ border-bottom: 0px !important;
403
+ }
404
+
405
+ .section-table {
406
+ margin-bottom: 15px;
407
+ }
408
+
409
+ table.section-table .section-footer td {
410
+ background-color: #012254;
411
+ border-radius: 0px 0px 10px 10px;
412
+ }
413
+
414
+ .section-borders-left:not(.isDragging) {
415
+ border-left: 1px solid #012254;
416
+ }
417
+
418
+ .section-borders-right:not(.isDragging) {
419
+ border-right: 1px solid #012254;
420
+ }
421
+
422
+ .table-header-sub-content .section-borders-left:not(.isDragging) {
423
+ border-left: none;
424
+ }
425
+ .table-header-sub-content .section-borders-right:not(.isDragging) {
426
+ border-right: none;
427
+ }
428
+
429
+ .table-header-sub-content tr:last-child td {
430
+ border-bottom: 0px !important;
431
+ }
432
+
433
+ .table-header td > * {
434
+ color: white !important;
435
+ }
436
+ .table-header td:first-child {
437
+ border-radius: 10px 0px 0px 0px;
438
+ }
439
+ .table-header td:last-child {
440
+ border-radius: 0px 10px 0px 0px;
441
+ }
442
+
443
+ .table-header-sub td {
444
+ background-color: #abccfe;
445
+ border-bottom: 0px !important;
446
+ }
447
+ .table-header-sub td:first-child {
448
+ border-radius: 10px 0px 0px 0px;
449
+ }
450
+ .table-header-sub td:last-child {
451
+ border-radius: 0px 10px 0px 0px;
452
+ }
453
+
454
+ .table-header-sub.bottom td:first-child {
455
+ border-radius: 0px 0px 10px 10px;
456
+ }
457
+ .table-header-sub-content {
458
+ border-left: 1px solid #abccfe;
459
+ border-bottom: 1px solid #abccfe;
460
+ border-right: 1px solid #abccfe;
461
+ }
462
+
463
+ .table-header-sub-content table tbody:last-child tr:last-child td {
464
+ border-bottom: 0px !important;
465
+ }
466
+ .table-concept {
467
+ margin-top: 15px;
468
+ margin-bottom: 15px;
469
+ }
470
+ .table-concept tbody {
471
+ border: 0px !important;
472
+ }
473
+
474
+ .area-dropable {
475
+ min-height: 30px; /* Ajusta la altura mínima según tus necesidades */
476
+ }
477
+
478
+ .no-border {
479
+ background-color: transparent !important;
480
+ border: 0px !important;
481
+ }
482
+
483
+ .min-height {
484
+ min-height: 30px;
485
+ }
486
+ .no-wrap {
487
+ white-space: nowrap;
488
+ }
489
+ .avatarcontent {
490
+ display: flex;
491
+ margin-bottom: auto;
492
+ min-height: 100px;
493
+ }
494
+
495
+ /* Dropdown menu */
496
+ .dropdown-menu {
497
+ background: white;
498
+ border: 1px solid var(--secondary-color-light_20);
499
+ border-radius: 0.7rem;
500
+ box-shadow: var(--shadow);
501
+ display: flex;
502
+ flex-direction: column;
503
+ gap: 0.1rem;
504
+ overflow: auto;
505
+ padding: 0.4rem;
506
+ position: relative;
507
+ }
508
+ .dropdown-menu button {
509
+ align-items: center;
510
+ background-color: transparent;
511
+ display: flex;
512
+ padding: 5px;
513
+ border: 0px;
514
+ text-align: left;
515
+ width: 100%;
516
+ }
517
+ .dropdown-menu button:hover,
518
+ .dropdown-menu button:hover.is-selected {
519
+ background-color: var(--low-contrarst);
520
+ }
521
+ .dropdown-menu button.is-selected {
522
+ background-color: var(--primary-color);
523
+ color: white;
524
+ }
525
+
526
+ .tiptap :first-child {
527
+ margin-top: 0;
528
+ }
529
+ .mention {
530
+ background-color: var(--primary-color-light_80);
531
+ border-radius: 0.4rem;
532
+ box-decoration-break: clone;
533
+ color: var(--primary-color);
534
+ padding: 0.1rem 0.3rem;
535
+ }
536
+
537
+ .tiptap {
538
+ width: 100%;
539
+ min-height: 60px;
540
+ border: 1px solid #707070;
541
+ min-width: 200px;
542
+ padding: 5px;
543
+ border-radius: 5px;
544
+ }
545
+
546
+ .editor-comments {
547
+ width: 100%;
548
+ }
549
+
550
+ .comment-item {
551
+ margin-bottom: 15px;
552
+ }
553
+ .comment-wrapper {
554
+ width: 100%;
555
+ }
556
+ .comment-description {
557
+ position: relative;
558
+ width: 100%;
559
+ background-color: #f8fafd;
560
+ padding: 5px;
561
+ border-radius: 5px;
562
+ min-height: 48px;
563
+ }
564
+ .comment-description p {
565
+ color: #17152b;
566
+ }
567
+
568
+ .comment-user-name {
569
+ color: #454455;
570
+ font-weight: bold;
571
+ }
572
+
573
+ .notification-item {
574
+ position: relative;
575
+ background-color: white;
576
+ padding: 3px;
577
+ border-radius: 3px;
578
+ margin: 3px;
579
+ margin-left: 5px;
580
+ margin-right: 5px;
581
+ }
582
+ .notification-item:hover {
583
+ background-color: #f4f4f5;
584
+ cursor: pointer;
585
+ }
586
+ .notification-description {
587
+ max-width: 300px;
588
+ }
589
+
590
+ .notification-read {
591
+ width: 12px;
592
+ height: 12px;
593
+ border-radius: 12px;
594
+ background-color: var(--primary-color);
595
+ position: absolute;
596
+ top: 8px;
597
+ right: 8px;
598
+ }
599
+ .comment-description p {
600
+ font-size: 14px;
601
+ }
602
+ .groupavatars .MuiAvatar-circular {
603
+ width: 36px;
604
+ height: 36px;
605
+ }
606
+
607
+ @media (prefers-color-scheme: dark) {
608
+ .notification-item {
609
+ background-color: transparent;
610
+ }
611
+
612
+ .notification-item:hover {
613
+ background-color: #1b1b1b;
614
+ }
615
+ .comment-description {
616
+ background-color: #1b1b1b;
617
+ }
618
+
619
+ .comment-description p {
620
+ color: white;
621
+ }
622
+ .comment-description span:not(.mention) {
623
+ color: white;
624
+ }
625
+ }
626
+ .notifications_wrapper {
627
+ width: 100%;
628
+ max-height: 400px;
629
+ overflow-y: scroll;
630
+ }
631
+
632
+ /*header*/
633
+ header.main {
634
+ width: 100%;
635
+ height: 80px;
636
+ background-color: #f8fafd;
637
+ position: sticky;
638
+ top: 0px;
639
+ z-index: 2;
640
+ padding-left: 15px;
641
+ padding-right: 15px;
642
+ justify-content: space-between;
643
+ display: flex;
644
+ flex-direction: row;
645
+ align-items: center;
646
+ }
647
+
648
+ header.main .button_account {
649
+ border-radius: 5px;
650
+ padding: 5px;
651
+ padding-left: 8px;
652
+ padding-right: 8px;
653
+ cursor: pointer;
654
+ margin-left: 15px;
655
+ }
656
+ header.main .button_account:hover {
657
+ border-color: var(--primary-color);
658
+ background-color: var(--primary-color);
659
+ }
660
+ header.main .button_account h6 {
661
+ margin: 0px;
662
+ padding: 0px;
663
+ line-height: initial !important;
664
+ }
665
+ header.main .button_account:hover h6 {
666
+ color: white;
667
+ }
668
+
669
+ header.main .nav {
670
+ display: flex;
671
+ flex-direction: row;
672
+ align-items: center;
673
+ }
674
+
675
+ header.main .nav .logo {
676
+ width: 210px;
677
+ height: 70px;
678
+ margin-right: 15px;
679
+ }
680
+
681
+ header .search {
682
+ position: relative;
683
+ display: flex;
684
+ flex-direction: row;
685
+ background-color: #f3f3f3;
686
+ width: 100%;
687
+ height: 48px;
688
+ border-radius: 5px;
689
+ max-width: 375px;
690
+ }
691
+ header .search .icon {
692
+ width: 48px;
693
+ height: 48px;
694
+ display: flex;
695
+ flex-direction: row;
696
+ align-items: center;
697
+ justify-content: center;
698
+ }
699
+ header .search input {
700
+ width: 100%;
701
+ height: 100%;
702
+ position: absolute;
703
+ border: 0px;
704
+ background-color: transparent;
705
+ padding-left: 48px;
706
+ }
707
+
708
+ .app_item {
709
+ text-decoration: none;
710
+ border-radius: 5px;
711
+ width: 100px;
712
+ height: 111px;
713
+ background-color: white;
714
+ display: flex;
715
+ color: inherit;
716
+ flex-direction: column;
717
+ align-items: center;
718
+ justify-content: center;
719
+ }
720
+
721
+ .app_item:hover {
722
+ cursor: pointer;
723
+ background-color: #f4f4f5;
724
+ }
725
+
726
+ .app_item .app_icon {
727
+ display: flex;
728
+ flex-direction: row;
729
+ align-items: center;
730
+ justify-content: center;
731
+ background-color: #e76a4f;
732
+ border-radius: 5px;
733
+ width: 40px;
734
+ height: 40px;
735
+ }
736
+
737
+ @media all and (max-width: 768px) {
738
+ header .logo {
739
+ display: none;
740
+ }
741
+ header .sections {
742
+ display: none;
743
+ }
744
+ header .button_account_name {
745
+ display: none;
746
+ }
747
+ }
748
+
749
+ @media (prefers-color-scheme: dark) {
750
+ header.main {
751
+ background-color: #1b1b1b;
752
+ }
753
+
754
+ header .search {
755
+ background-color: #282a2c;
756
+ }
757
+ header .search svg {
758
+ fill: rgba(255, 255, 255, 0.7) !important ;
759
+ }
760
+ .app_item {
761
+ background-color: transparent;
762
+ }
763
+
764
+ .app_item .app_icon {
765
+ background-color: #a42f16;
766
+ }
767
+
768
+ .app_item:hover {
769
+ background-color: #1b1b1b;
770
+ }
771
+ }
772
+
773
+
774
+ .table-footer-content{
775
+ background-color: #012254;
776
+ }
777
+
778
+ .table-footer-content.end td:first-child{
779
+ border:0px 0px 10px 0px;
780
+ }
781
+ .table-footer-content.end td:last-child{
782
+ border:0px 0px 0px 10px;
783
+ }