@layerfi/components 0.1.30 → 0.1.32

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.
@@ -343,7 +343,9 @@
343
343
  border-radius: 4px;
344
344
  box-sizing: border-box;
345
345
  transition: all 150ms ease-out;
346
- padding: var(--spacing-2xs) var(--spacing-sm);
346
+ padding: 0;
347
+ width: 36px;
348
+ height: 36px;
347
349
  }
348
350
  .Layer__btn.Layer__btn--full-width {
349
351
  width: 100%;
@@ -635,16 +637,14 @@
635
637
  border-top-left-radius: 0;
636
638
  border-bottom-left-radius: 0;
637
639
  }
638
- @container (min-width: 760px) {
639
- .Layer__date-month-picker__wrapper.Layer__date-month-picker__wrapper--current-date-option .Layer__date-month-picker {
640
- border-top-right-radius: 0;
641
- border-bottom-right-radius: 0;
642
- }
643
- .Layer__date-month-picker__wrapper .Layer__date-month-picker__current-button {
644
- border: 1px solid var(--input-border-color);
645
- border-left: none;
646
- box-shadow: none;
647
- }
640
+ .Layer__date-month-picker__wrapper.Layer__date-month-picker__wrapper--current-date-option .Layer__date-month-picker {
641
+ border-top-right-radius: 0;
642
+ border-bottom-right-radius: 0;
643
+ }
644
+ .Layer__date-month-picker__wrapper .Layer__date-month-picker__current-button {
645
+ border: 1px solid var(--input-border-color);
646
+ border-left: none;
647
+ box-shadow: none;
648
648
  }
649
649
  .Layer__date-month-picker {
650
650
  width: 210px;
@@ -707,34 +707,37 @@
707
707
  background: linear-gradient(-90deg, #fff 50%, rgba(255, 255, 255, 0) 100%);
708
708
  z-index: 2;
709
709
  }
710
- @container (max-width: 760px) {
711
- .Layer__date-month-picker__wrapper .Layer__date-month-picker {
710
+ @container (max-width: 759px) {
711
+ .Layer__date-month-picker--responsive.Layer__date-month-picker__wrapper .Layer__date-month-picker {
712
712
  border: none;
713
713
  background: none;
714
714
  width: 175px;
715
715
  }
716
- .Layer__date-month-picker__wrapper .Layer__date-month-picker__button {
716
+ .Layer__date-month-picker--responsive.Layer__date-month-picker__wrapper .Layer__date-month-picker__button {
717
717
  margin: 0 0.125rem;
718
718
  box-shadow: 0px 1px 2px 0px var(--base-transparent-6, rgba(16, 24, 40, 0.06)), 0px 0px 0px 1px var(--color-base-300);
719
719
  border-radius: 4px;
720
720
  }
721
- .Layer__date-month-picker__wrapper .Layer__date-month-picker__effect-blur {
721
+ .Layer__date-month-picker--responsive.Layer__date-month-picker__wrapper .Layer__date-month-picker__effect-blur {
722
722
  right: 0;
723
723
  max-width: 70px;
724
724
  background: linear-gradient(-90deg, #f7f8fa 75%, rgba(255, 255, 255, 0) 100%);
725
725
  }
726
- .Layer__date-month-picker__wrapper .Layer__date-month-picker__button--disabled {
726
+ .Layer__date-month-picker--responsive.Layer__date-month-picker__wrapper .Layer__date-month-picker__button--disabled {
727
727
  background-color: var(--color-base-200);
728
728
  }
729
- .Layer__date-month-picker__wrapper .Layer__date-month-picker__labels-container {
729
+ .Layer__date-month-picker--responsive.Layer__date-month-picker__wrapper .Layer__date-month-picker__labels-container {
730
730
  width: 550px;
731
731
  }
732
- .Layer__date-month-picker__wrapper .Layer__date-month-picker__label {
732
+ .Layer__date-month-picker--responsive.Layer__date-month-picker__wrapper .Layer__date-month-picker__label {
733
733
  padding-left: 0;
734
734
  padding-right: 75px;
735
735
  justify-content: flex-end;
736
736
  font-size: 12px;
737
737
  }
738
+ .Layer__date-month-picker--responsive .Layer__date-month-picker__current-button {
739
+ display: none;
740
+ }
738
741
  }
739
742
  .Layer__hover-menu {
740
743
  position: relative;
@@ -821,7 +824,6 @@
821
824
  border-radius: var(--border-radius-sm);
822
825
  border: 1px solid var(--border-color);
823
826
  background-color: var(--bg-color);
824
- overflow: auto;
825
827
  container-type: inline-size;
826
828
  }
827
829
  .Layer__component-container::-webkit-scrollbar {
@@ -928,6 +930,9 @@
928
930
  .react-datepicker__tab-loop {
929
931
  z-index: 99;
930
932
  }
933
+ .Layer__datepicker input {
934
+ text-align: center;
935
+ }
931
936
  .Layer__datepicker__time input {
932
937
  max-width: 100px;
933
938
  }
@@ -935,8 +940,18 @@
935
940
  outline-color: var(--color-base-800);
936
941
  }
937
942
  .Layer__datepicker__popper {
943
+ z-index: 99;
938
944
  border-radius: 8px;
939
945
  }
946
+ .Layer__datepicker__popper .react-datepicker__day--in-range,
947
+ .Layer__datepicker__popper .react-datepicker__day--in-selecting-range {
948
+ background-color: var(--color-base-200);
949
+ color: var(--color-base-800);
950
+ }
951
+ .Layer__datepicker__popper .react-datepicker__day--range-end {
952
+ background-color: var(--color-base-800);
953
+ color: var(--color-base-100);
954
+ }
940
955
  .Layer__datepicker__popper .react-datepicker__triangle {
941
956
  display: none;
942
957
  }
@@ -1060,10 +1075,39 @@
1060
1075
  font-size: 14px;
1061
1076
  border-bottom: 1px solid var(--color-base-200);
1062
1077
  }
1078
+ .react-datepicker__children-container {
1079
+ width: 100%;
1080
+ margin: 0;
1081
+ padding: 0;
1082
+ }
1083
+ .Layer__datepicker__popper__custom-footer {
1084
+ display: flex;
1085
+ flex-direction: column;
1086
+ justify-content: flex-start;
1087
+ align-items: flex-start;
1088
+ padding: var(--spacing-md) var(--spacing-xs);
1089
+ border-top: 1px solid var(--color-base-200);
1090
+ }
1091
+ .Layer__datepicker__popper__custom-footer .Layer__text-btn {
1092
+ padding: var(--spacing-xs) var(--spacing-xs);
1093
+ color: var(--color-base-800);
1094
+ font-weight: 460;
1095
+ text-decoration: none;
1096
+ }
1063
1097
  .Layer__details-list {
1064
1098
  display: flex;
1065
1099
  flex-direction: column;
1066
1100
  }
1101
+ .Layer__details-list__actions > .Layer__details-list__close-btn {
1102
+ width: 36px;
1103
+ height: 36px;
1104
+ padding: 0;
1105
+ }
1106
+ @container (max-width: 1024px) {
1107
+ .Layer__details-list__actions > .Layer__details-list__close-btn {
1108
+ display: none;
1109
+ }
1110
+ }
1067
1111
  .Layer__details-list .Layer__component-header {
1068
1112
  padding-bottom: 0;
1069
1113
  }
@@ -2077,6 +2121,15 @@
2077
2121
  gap: var(--spacing-md);
2078
2122
  container-type: inline-size;
2079
2123
  }
2124
+ .Layer__view-main .Layer__toggle {
2125
+ border-radius: 6px;
2126
+ }
2127
+ .Layer__view-main .Layer__toggle .Layer__toggle-option input + span {
2128
+ border-radius: 6px;
2129
+ }
2130
+ .Layer__view-main .Layer__toggle__thumb {
2131
+ border-radius: 6px;
2132
+ }
2080
2133
  .Layer__view-header {
2081
2134
  display: flex;
2082
2135
  width: 100%;
@@ -2116,6 +2169,8 @@
2116
2169
  width: 100%;
2117
2170
  border-bottom: 1px solid var(--color-base-200);
2118
2171
  container-type: inline-size;
2172
+ position: relative;
2173
+ z-index: 1;
2119
2174
  }
2120
2175
  .Layer__panel_view-header__content {
2121
2176
  padding: var(--spacing-lg);
@@ -2161,22 +2216,19 @@
2161
2216
  }
2162
2217
  .Layer__ledger-account__header {
2163
2218
  display: flex;
2164
- flex-direction: column;
2219
+ flex-direction: row;
2165
2220
  padding: var(--spacing-xl);
2166
2221
  padding-bottom: var(--spacing-md);
2222
+ gap: var(--spacing-md);
2167
2223
  align-items: flex-start;
2168
2224
  justify-content: flex-start;
2169
2225
  }
2170
2226
  .Layer__ledger-account__title-container {
2171
2227
  display: flex;
2172
- justify-content: space-between;
2173
- align-items: center;
2228
+ flex-direction: column;
2229
+ justify-content: flex-start;
2230
+ align-items: flex-start;
2174
2231
  width: 100%;
2175
- padding-top: var(--spacing-md);
2176
- padding-bottom: var(--spacing-3xs);
2177
- }
2178
- .Layer__ledger-account__title {
2179
- font-size: 24px;
2180
2232
  }
2181
2233
  .Layer__ledger-account__balance-container {
2182
2234
  display: flex;
@@ -2186,6 +2238,15 @@
2186
2238
  .Layer__ledger-account__balance-label {
2187
2239
  color: var(--color-base-600);
2188
2240
  }
2241
+ .Layer__ledger-account__entry-details__back-btn {
2242
+ display: flex;
2243
+ align-items: center;
2244
+ gap: var(--spacing-md);
2245
+ padding-bottom: var(--spacing-md);
2246
+ }
2247
+ .Layer__ledger-account__entry-details__title-container > .Layer__text {
2248
+ font-size: 24px;
2249
+ }
2189
2250
  .Layer__ledger-account__entry-details__line-items {
2190
2251
  padding: var(--spacing-md);
2191
2252
  }
@@ -2341,14 +2402,6 @@
2341
2402
  gap: var(--spacing-xs);
2342
2403
  }
2343
2404
  }
2344
- @container (min-width: 1400px) {
2345
- .Layer__balance-sheet .Layer__table tr td:first-child .Layer__table-cell-content,
2346
- .Layer__balance-sheet .Layer__table tr td:last-child .Layer__table-cell-content,
2347
- .Layer__balance-sheet .Layer__table tr th:first-child.Layer__table-header,
2348
- .Layer__balance-sheet .Layer__table tr th:last-child.Layer__table-header {
2349
- padding-left: 0;
2350
- }
2351
- }
2352
2405
  .Layer__balance-sheet__header {
2353
2406
  display: flex;
2354
2407
  flex: 1;
@@ -2380,6 +2433,9 @@
2380
2433
  .Layer__balance-sheet__table .Layer__balance-sheet-row .Layer__balance-sheet-cell__value .Layer__table-cell-content {
2381
2434
  justify-content: flex-end;
2382
2435
  }
2436
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-0:not(.Layer__balance-sheet-row--display-children-true) .Layer__balance-sheet-cell__label {
2437
+ padding-left: 16px;
2438
+ }
2383
2439
  .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-0 .Layer__balance-sheet-cell__label .Layer__table-cell-content {
2384
2440
  font-size: var(--text-lg);
2385
2441
  font-weight: 540;
@@ -2388,8 +2444,11 @@
2388
2444
  .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-1:not(.Layer__balance-sheet-row--display-children-true) {
2389
2445
  background-color: var(--color-base-50);
2390
2446
  }
2447
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-1:not(.Layer__balance-sheet-row--display-children-true) .Layer__balance-sheet-cell__label {
2448
+ padding-left: calc(50px - var(--spacing-sm));
2449
+ }
2391
2450
  .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-1 .Layer__balance-sheet-cell__label {
2392
- padding-left: calc(40px - var(--spacing-sm));
2451
+ padding-left: calc(34px - var(--spacing-sm));
2393
2452
  }
2394
2453
  .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-1 .Layer__table-cell-content {
2395
2454
  font-size: var(--text-md);
@@ -2399,14 +2458,45 @@
2399
2458
  .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-2:not(.Layer__balance-sheet-row--display-children-true) {
2400
2459
  background-color: var(--color-base-50);
2401
2460
  }
2402
- .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-2 .Layer__balance-sheet-cell__label {
2461
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-2:not(.Layer__balance-sheet-row--display-children-true) .Layer__balance-sheet-cell__label {
2403
2462
  padding-left: calc(80px - var(--spacing-sm));
2404
2463
  }
2464
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-2 .Layer__balance-sheet-cell__label {
2465
+ padding-left: calc(64px - var(--spacing-sm));
2466
+ }
2405
2467
  .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-2 .Layer__table-cell-content {
2406
2468
  font-size: var(--text-md);
2407
2469
  font-weight: 460;
2408
2470
  color: var(--text-color-secondary);
2409
2471
  }
2472
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-3:not(.Layer__balance-sheet-row--display-children-true) {
2473
+ background-color: var(--color-base-50);
2474
+ }
2475
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-3:not(.Layer__balance-sheet-row--display-children-true) .Layer__balance-sheet-cell__label {
2476
+ padding-left: calc(104px - var(--spacing-sm));
2477
+ }
2478
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-3 .Layer__balance-sheet-cell__label {
2479
+ padding-left: calc(88px - var(--spacing-sm));
2480
+ }
2481
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-3 .Layer__table-cell-content {
2482
+ font-size: var(--text-md);
2483
+ font-weight: 460;
2484
+ color: var(--text-color-secondary);
2485
+ }
2486
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-4:not(.Layer__balance-sheet-row--display-children-true) {
2487
+ background-color: var(--color-base-50);
2488
+ }
2489
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-4:not(.Layer__balance-sheet-row--display-children-true) .Layer__balance-sheet-cell__label {
2490
+ padding-left: calc(130px - var(--spacing-sm));
2491
+ }
2492
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-4 .Layer__balance-sheet-cell__label {
2493
+ padding-left: calc(114px - var(--spacing-sm));
2494
+ }
2495
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-4 .Layer__table-cell-content {
2496
+ font-size: var(--text-md);
2497
+ font-weight: 460;
2498
+ color: var(--text-color-secondary);
2499
+ }
2410
2500
  .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--display-children-true {
2411
2501
  font-weight: bold;
2412
2502
  cursor: pointer;
@@ -2415,7 +2505,7 @@
2415
2505
  font-weight: normal;
2416
2506
  }
2417
2507
  .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--variant-summation {
2418
- background: var(--color-base-100);
2508
+ background: var(--color-base-100) !important;
2419
2509
  }
2420
2510
  .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--variant-summation .Layer__table-cell-content {
2421
2511
  font-size: var(--text-md);
@@ -2437,11 +2527,23 @@
2437
2527
  transition: transform var(--transition-speed);
2438
2528
  transform: rotate(-90deg);
2439
2529
  }
2440
- .Layer__balance-sheet__table .Layer__balance-sheet-row {
2441
- border-left: 4px solid transparent;
2530
+ .Layer__balance-sheet__table .Layer__balance-sheet-cell__label {
2531
+ position: relative;
2532
+ }
2533
+ .Layer__balance-sheet__table .Layer__table-cell__active {
2534
+ display: none;
2535
+ width: 4px;
2536
+ height: 100%;
2537
+ position: absolute;
2538
+ background: var(--color-base-400);
2539
+ left: 0;
2540
+ top: 0;
2442
2541
  }
2443
- .Layer__balance-sheet__table .Layer__balance-sheet-row:not(.Layer__balance-sheet-row--display-children-true) {
2444
- border-left: 4px solid var(--color-base-400);
2542
+ .Layer__balance-sheet__table .Layer__balance-sheet-row .Layer__table-cell__active {
2543
+ display: none;
2544
+ }
2545
+ .Layer__balance-sheet__table .Layer__balance-sheet-row:not(.Layer__balance-sheet-row--display-children-true) .Layer__table-cell__active {
2546
+ display: block;
2445
2547
  }
2446
2548
  .Layer__balance-sheet__table .Layer__balance-sheet-cell__label .Layer__table-cell-content {
2447
2549
  padding-left: 0;
@@ -2452,9 +2554,206 @@
2452
2554
  .Layer__balance-sheet__table .Layer__balance-sheet-cell__value--negative .Layer__table-cell-content::before {
2453
2555
  content: "-$";
2454
2556
  }
2557
+ .Layer__statement-of-cash-flow {
2558
+ border: 1px solid var(--border-color);
2559
+ border-radius: var(--corner-radius);
2560
+ background-color: var(--background-color);
2561
+ }
2562
+ .Layer__statement-of-cash-flow .Layer__panel_view-header__controls {
2563
+ gap: 0;
2564
+ }
2565
+ .Layer__statement-of-cash-flow * {
2566
+ font-family: var(--font-family);
2567
+ font-feature-settings:
2568
+ "cv10" on,
2569
+ "cv01" on,
2570
+ "cv05" on,
2571
+ "cv08" on,
2572
+ "ss03" on;
2573
+ }
2574
+ .Layer__statement-of-cash-flow tbody .Layer__table__empty-row:first-child {
2575
+ display: none;
2576
+ }
2577
+ .Layer__statement-of-cash-flow .Layer__statement-of-cash-flow__title {
2578
+ display: inline;
2579
+ flex: 1;
2580
+ font-size: var(--text-heading);
2581
+ margin: 0;
2582
+ }
2583
+ @container (max-width: 800px) {
2584
+ .Layer__statement-of-cash-flow .Layer__statement-of-cash-flow__header {
2585
+ flex-direction: column;
2586
+ gap: var(--spacing-sm);
2587
+ }
2588
+ }
2589
+ @container (max-width: 540px) {
2590
+ .Layer__statement-of-cash-flow .Layer__statement-of-cash-flow__header {
2591
+ flex-direction: row;
2592
+ gap: var(--spacing-sm);
2593
+ flex-wrap: wrap;
2594
+ }
2595
+ .Layer__statement-of-cash-flow .Layer__statement-of-cash-flow__header .Layer__statement-of-cash-flow__actions {
2596
+ flex-wrap: wrap;
2597
+ }
2598
+ .Layer__statement-of-cash-flow .Layer__statement-of-cash-flow__header .Layer__statement-of-cash-flow__actions__date-picker {
2599
+ flex-wrap: wrap;
2600
+ gap: var(--spacing-xs);
2601
+ }
2602
+ }
2603
+ @container (min-width: 1400px) {
2604
+ .Layer__statement-of-cash-flow .Layer__table tr td:first-child .Layer__table-cell-content,
2605
+ .Layer__statement-of-cash-flow .Layer__table tr td:last-child .Layer__table-cell-content,
2606
+ .Layer__statement-of-cash-flow .Layer__table tr th:first-child.Layer__table-header,
2607
+ .Layer__statement-of-cash-flow .Layer__table tr th:last-child.Layer__table-header {
2608
+ padding-left: 0;
2609
+ }
2610
+ }
2611
+ .Layer__statement-of-cash-flow__header {
2612
+ display: flex;
2613
+ flex: 1;
2614
+ flex-direction: row;
2615
+ padding: var(--spacing-sm) var(--spacing-md);
2616
+ }
2617
+ .Layer__statement-of-cash-flow__header.Layer__statement-of-cash-flow__header--no-title .Layer__statement-of-cash-flow__actions {
2618
+ flex: 1;
2619
+ }
2620
+ .Layer__statement-of-cash-flow__header .Layer__statement-of-cash-flow__actions {
2621
+ display: flex;
2622
+ flex-direction: row;
2623
+ justify-content: space-between;
2624
+ gap: var(--spacing-xs);
2625
+ }
2626
+ .Layer__statement-of-cash-flow__header .Layer__statement-of-cash-flow__actions .Layer__statement-of-cash-flow__actions__date-picker {
2627
+ display: flex;
2628
+ flex-direction: row;
2629
+ gap: var(--spacing-xs);
2630
+ }
2631
+ .Layer__statement-of-cash-flow__table {
2632
+ width: 100%;
2633
+ border-collapse: collapse;
2634
+ }
2635
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row {
2636
+ font-size: 1em;
2637
+ height: 52px;
2638
+ }
2639
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row .Layer__statement-of-cash-flow-cell__value .Layer__table-cell-content {
2640
+ justify-content: flex-end;
2641
+ }
2642
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-0:not(.Layer__statement-of-cash-flow-row--display-children-true) .Layer__statement-of-cash-flow-cell__label {
2643
+ padding-left: 16px;
2644
+ }
2645
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-0 .Layer__statement-of-cash-flow-cell__label .Layer__table-cell-content {
2646
+ font-size: var(--text-lg);
2647
+ font-weight: 540;
2648
+ color: var(--text-color-primary);
2649
+ }
2650
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-0.Layer__statement-of-cash-flow-row--variant-summation .Layer__table-cell-content {
2651
+ font-size: var(--text-md);
2652
+ }
2653
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-1:not(.Layer__statement-of-cash-flow-row--display-children-true) {
2654
+ background-color: var(--color-base-50);
2655
+ }
2656
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-1:not(.Layer__statement-of-cash-flow-row--display-children-true) .Layer__statement-of-cash-flow-cell__label {
2657
+ padding-left: calc(50px - var(--spacing-sm));
2658
+ }
2659
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-1 .Layer__statement-of-cash-flow-cell__label {
2660
+ padding-left: calc(34px - var(--spacing-sm));
2661
+ }
2662
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-1 .Layer__table-cell-content {
2663
+ font-size: var(--text-md);
2664
+ font-variation-settings: "wght" var(--font-weight-bold);
2665
+ color: var(--color-base-700);
2666
+ }
2667
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-2:not(.Layer__statement-of-cash-flow-row--display-children-true) {
2668
+ background-color: var(--color-base-50);
2669
+ }
2670
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-2:not(.Layer__statement-of-cash-flow-row--display-children-true) .Layer__statement-of-cash-flow-cell__label {
2671
+ padding-left: calc(80px - var(--spacing-sm));
2672
+ }
2673
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-2 .Layer__statement-of-cash-flow-cell__label {
2674
+ padding-left: calc(64px - var(--spacing-sm));
2675
+ }
2676
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-2 .Layer__table-cell-content {
2677
+ font-size: var(--text-md);
2678
+ font-weight: 460;
2679
+ color: var(--text-color-secondary);
2680
+ }
2681
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-3:not(.Layer__statement-of-cash-flow-row--display-children-true) {
2682
+ background-color: var(--color-base-50);
2683
+ }
2684
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-3:not(.Layer__statement-of-cash-flow-row--display-children-true) .Layer__statement-of-cash-flow-cell__label {
2685
+ padding-left: calc(104px - var(--spacing-sm));
2686
+ }
2687
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-3 .Layer__statement-of-cash-flow-cell__label {
2688
+ padding-left: calc(88px - var(--spacing-sm));
2689
+ }
2690
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-3 .Layer__table-cell-content {
2691
+ font-size: var(--text-md);
2692
+ font-weight: 460;
2693
+ color: var(--text-color-secondary);
2694
+ }
2695
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-4:not(.Layer__statement-of-cash-flow-row--display-children-true) {
2696
+ background-color: var(--color-base-50);
2697
+ }
2698
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-4:not(.Layer__statement-of-cash-flow-row--display-children-true) .Layer__statement-of-cash-flow-cell__label {
2699
+ padding-left: calc(130px - var(--spacing-sm));
2700
+ }
2701
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-4 .Layer__statement-of-cash-flow-cell__label {
2702
+ padding-left: calc(114px - var(--spacing-sm));
2703
+ }
2704
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--depth-4 .Layer__table-cell-content {
2705
+ font-size: var(--text-md);
2706
+ font-weight: 460;
2707
+ color: var(--text-color-secondary);
2708
+ }
2709
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--display-children-true {
2710
+ font-weight: bold;
2711
+ cursor: pointer;
2712
+ }
2713
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--display-children-false {
2714
+ font-weight: normal;
2715
+ }
2716
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--variant-summation {
2717
+ background: var(--color-base-100);
2718
+ }
2719
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--variant-summation .Layer__table-cell-content {
2720
+ font-size: var(--text-md);
2721
+ font-variation-settings: "wght" var(--font-weight-bold);
2722
+ color: var(--text-color-primary);
2723
+ }
2724
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--expanded svg {
2725
+ transform: rotate(0deg);
2726
+ }
2727
+ .Layer__statement-of-cash-flow__table .Layer__table-cell--last {
2728
+ text-align: right;
2729
+ }
2730
+ .Layer__statement-of-cash-flow__table .Layer__table-cell__content-wrapper {
2731
+ display: flex;
2732
+ align-items: center;
2733
+ }
2734
+ .Layer__statement-of-cash-flow__table .Layer__table-cell__content-wrapper .Layer__table__expand-icon {
2735
+ margin: 0;
2736
+ transition: transform var(--transition-speed);
2737
+ transform: rotate(-90deg);
2738
+ }
2739
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-cell__label {
2740
+ position: relative;
2741
+ }
2742
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-cell__label .Layer__table-cell-content {
2743
+ padding-left: 0;
2744
+ }
2745
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-cell__value--positive .Layer__table-cell-content::before {
2746
+ content: "$";
2747
+ }
2748
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-cell__value--negative .Layer__table-cell-content::before {
2749
+ content: "-$";
2750
+ }
2455
2751
  .Layer__bank-transactions {
2456
2752
  max-width: var(--max-component-width);
2457
2753
  }
2754
+ .Layer__bank-transactions.Layer__component {
2755
+ overflow: auto;
2756
+ }
2458
2757
  .Layer__bank-transactions__loader-container {
2459
2758
  padding: var(--spacing-2xl);
2460
2759
  }
@@ -3846,6 +4145,13 @@
3846
4145
  gap: var(--spacing-sm);
3847
4146
  align-items: center;
3848
4147
  }
4148
+ .Layer__chart-of-accounts__form .actions {
4149
+ display: none;
4150
+ gap: var(--spacing-sm);
4151
+ align-items: center;
4152
+ justify-content: flex-end;
4153
+ padding-top: var(--spacing-xl);
4154
+ }
3849
4155
  .Layer__chart-of-accounts__table .Layer__table-row:not(.Layer__table-row--header) {
3850
4156
  cursor: pointer;
3851
4157
  }
@@ -3964,6 +4270,12 @@
3964
4270
  .Layer__table-cell.Layer__coa__actions .Layer__table-cell-content {
3965
4271
  padding-right: var(--spacing-md);
3966
4272
  }
4273
+ .Layer__chart-of-accounts__sidebar__header .actions {
4274
+ display: none;
4275
+ }
4276
+ .Layer__chart-of-accounts__form .actions {
4277
+ display: flex;
4278
+ }
3967
4279
  }
3968
4280
  @container (min-width: 761px) and (max-width: 1024px) {
3969
4281
  .Layer__chart-of-accounts .Layer__mobile--hidden {
@@ -4015,6 +4327,19 @@
4015
4327
  display: flex;
4016
4328
  align-items: stretch;
4017
4329
  position: relative;
4330
+ overflow: auto;
4331
+ }
4332
+ @container (min-width: 1025px) {
4333
+ .Layer__component-container.Layer__journal {
4334
+ overflow: unset;
4335
+ }
4336
+ }
4337
+ .Layer__journal .Layer__journal__bottom-actions {
4338
+ display: none;
4339
+ gap: var(--spacing-sm);
4340
+ align-items: center;
4341
+ justify-content: flex-end;
4342
+ padding: var(--spacing-xl);
4018
4343
  }
4019
4344
  .Layer__journal-table .Layer__table-cell-content::before {
4020
4345
  background: var(--color-base-400);
@@ -4219,6 +4544,21 @@
4219
4544
  .Layer__journal__panel .Layer__panel__sidebar .Layer__panel__sidebar-content {
4220
4545
  width: 100%;
4221
4546
  }
4547
+ .Layer__journal .Layer__journal__sidebar__header .actions {
4548
+ display: none;
4549
+ }
4550
+ .Layer__journal .Layer__journal__sidebar__header .actions {
4551
+ display: none;
4552
+ }
4553
+ .Layer__journal .Layer__journal__bottom-actions {
4554
+ display: flex;
4555
+ }
4556
+ .Layer__journal .Layer__panel.Layer__panel--open {
4557
+ overflow: hidden;
4558
+ }
4559
+ .Layer__journal__form__input-group.Layer__journal__form__input-group__textarea {
4560
+ background: transparent;
4561
+ }
4222
4562
  }
4223
4563
  @container (min-width: 500px) and (max-width: 1024px) {
4224
4564
  .Layer__journal__panel .Layer__details-list .Layer__component-header {
@@ -4967,6 +5307,8 @@
4967
5307
  background: rgba(255, 255, 255, 0.5);
4968
5308
  backdrop-filter: blur(6px);
4969
5309
  z-index: 1;
5310
+ border-top-left-radius: var(--border-radius-sm);
5311
+ border-top-right-radius: var(--border-radius-sm);
4970
5312
  }
4971
5313
  .Layer__panel__sidebar {
4972
5314
  width: 480px;
@@ -4981,6 +5323,7 @@
4981
5323
  background: var(--color-base-0);
4982
5324
  height: 100%;
4983
5325
  border-left: 1px solid var(--color-base-300);
5326
+ border-top-right-radius: var(--border-radius-sm);
4984
5327
  }
4985
5328
  .Layer__panel__sidebar .Layer__panel__sidebar-content {
4986
5329
  width: 480px;
@@ -5002,10 +5345,19 @@
5002
5345
  max-width: 100%;
5003
5346
  width: 100%;
5004
5347
  border-width: 0;
5348
+ border-radius: var(--border-radius-sm);
5005
5349
  opacity: 0.2;
5006
5350
  transform: translateY(-50px) scale(0.96);
5007
5351
  transition: transform 120ms ease-in-out, opacity 120ms ease-in-out;
5008
5352
  }
5353
+ .Layer__panel__sidebar .Layer__panel__sidebar-content {
5354
+ position: sticky;
5355
+ top: 0;
5356
+ height: min-content;
5357
+ }
5358
+ .Layer__panel--open .Layer__panel__sidebar {
5359
+ overflow: unset;
5360
+ }
5009
5361
  .Layer__panel.Layer__panel--open .Layer__panel__sidebar {
5010
5362
  left: 0;
5011
5363
  top: 0;
@@ -5062,6 +5414,7 @@
5062
5414
  grid-template-columns: 1fr auto;
5063
5415
  overflow: hidden;
5064
5416
  background-color: var(--color-base-100);
5417
+ border-radius: var(--border-radius-sm);
5065
5418
  }
5066
5419
  .Layer__profit-and-loss-table__loader-container {
5067
5420
  padding: var(--spacing-2xl);
@@ -5413,6 +5766,10 @@
5413
5766
  .Layer__profit-and-loss__chart_with_summaries__chart-col {
5414
5767
  padding-left: var(--spacing-xs);
5415
5768
  }
5769
+ .Layer__panel--open .Layer__profit-and-loss-table {
5770
+ border-top-right-radius: 0;
5771
+ border-bottom-right-radius: 0;
5772
+ }
5416
5773
  }
5417
5774
  @container (max-width: 1023px) and (min-width: 760px) {
5418
5775
  .Layer__profit-and-loss-summaries,
@@ -5494,6 +5851,9 @@
5494
5851
  }
5495
5852
  header.Layer__profit-and-loss-detailed-charts__header--tablet {
5496
5853
  display: none;
5854
+ justify-content: flex-start;
5855
+ gap: var(--spacing-md);
5856
+ align-items: center;
5497
5857
  }
5498
5858
  @container (max-width: 1023px) and (min-width: 768px) {
5499
5859
  header.Layer__profit-and-loss-detailed-charts__header {
@@ -5506,7 +5866,7 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
5506
5866
  .Layer__profit-and-loss-detailed-charts__head {
5507
5867
  display: flex;
5508
5868
  flex-direction: column;
5509
- gap: var(--spacing-2xs);
5869
+ gap: var(--spacing-4xs);
5510
5870
  }
5511
5871
  .Layer__profit-and-loss-detailed-charts__head .title {
5512
5872
  color: var(--color-base-800);
@@ -5523,6 +5883,7 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
5523
5883
  .Layer__profit-and-loss-detailed-charts {
5524
5884
  width: 100%;
5525
5885
  background: var(--color-base-0);
5886
+ border-radius: var(--border-radius-sm);
5526
5887
  }
5527
5888
  .Layer__profit-and-loss-detailed-charts .chart-field {
5528
5889
  width: 100%;
@@ -5931,4 +6292,13 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
5931
6292
  margin-top: -12px;
5932
6293
  }
5933
6294
  }
6295
+ .Layer__reports .Layer__panel__content {
6296
+ border-radius: var(--border-radius-sm);
6297
+ }
6298
+ @container (min-width: 1024px) {
6299
+ .Layer__reports .Layer__panel__content {
6300
+ border-bottom-right-radius: 0;
6301
+ border-top-right-radius: 0;
6302
+ }
6303
+ }
5934
6304
  /*# sourceMappingURL=index.css.map */