@layerfi/components 0.1.31 → 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
  }
@@ -1826,6 +1870,12 @@
1826
1870
  transform: scaleX(0.98);
1827
1871
  opacity: 0;
1828
1872
  }
1873
+ .Layer__table__empty-row {
1874
+ background: var(--color-base-100);
1875
+ height: var(--spacing-2xs);
1876
+ border-top: 1px solid var(--color-base-200);
1877
+ border-bottom: 1px solid var(--color-base-200);
1878
+ }
1829
1879
  .Layer__tabs {
1830
1880
  display: flex;
1831
1881
  width: max-content;
@@ -2071,6 +2121,15 @@
2071
2121
  gap: var(--spacing-md);
2072
2122
  container-type: inline-size;
2073
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
+ }
2074
2133
  .Layer__view-header {
2075
2134
  display: flex;
2076
2135
  width: 100%;
@@ -2099,6 +2158,43 @@
2099
2158
  align-self: flex-start;
2100
2159
  }
2101
2160
  }
2161
+ .Layer__panel_view-main {
2162
+ display: flex;
2163
+ flex-direction: column;
2164
+ gap: var(--spacing-md);
2165
+ container-type: inline-size;
2166
+ }
2167
+ .Layer__panel_view-header {
2168
+ display: flex;
2169
+ width: 100%;
2170
+ border-bottom: 1px solid var(--color-base-200);
2171
+ container-type: inline-size;
2172
+ position: relative;
2173
+ z-index: 1;
2174
+ }
2175
+ .Layer__panel_view-header__content {
2176
+ padding: var(--spacing-lg);
2177
+ display: flex;
2178
+ align-items: center;
2179
+ justify-content: space-between;
2180
+ width: 100%;
2181
+ max-width: 1406px;
2182
+ }
2183
+ .Layer__panel_view-header__controls {
2184
+ display: flex;
2185
+ align-items: center;
2186
+ gap: var(--spacing-sm);
2187
+ }
2188
+ @container (max-width: 760px) {
2189
+ .Layer__panel_view-header__content {
2190
+ flex-direction: column;
2191
+ align-items: flex-start;
2192
+ gap: var(--spacing-sm);
2193
+ }
2194
+ .Layer__panel_view-header__content .Layer__heading {
2195
+ align-self: flex-start;
2196
+ }
2197
+ }
2102
2198
  .Layer__ledger-account__index {
2103
2199
  background-color: var(--color-base-0);
2104
2200
  width: 100%;
@@ -2120,22 +2216,19 @@
2120
2216
  }
2121
2217
  .Layer__ledger-account__header {
2122
2218
  display: flex;
2123
- flex-direction: column;
2219
+ flex-direction: row;
2124
2220
  padding: var(--spacing-xl);
2125
2221
  padding-bottom: var(--spacing-md);
2222
+ gap: var(--spacing-md);
2126
2223
  align-items: flex-start;
2127
2224
  justify-content: flex-start;
2128
2225
  }
2129
2226
  .Layer__ledger-account__title-container {
2130
2227
  display: flex;
2131
- justify-content: space-between;
2132
- align-items: center;
2228
+ flex-direction: column;
2229
+ justify-content: flex-start;
2230
+ align-items: flex-start;
2133
2231
  width: 100%;
2134
- padding-top: var(--spacing-md);
2135
- padding-bottom: var(--spacing-3xs);
2136
- }
2137
- .Layer__ledger-account__title {
2138
- font-size: 24px;
2139
2232
  }
2140
2233
  .Layer__ledger-account__balance-container {
2141
2234
  display: flex;
@@ -2145,6 +2238,15 @@
2145
2238
  .Layer__ledger-account__balance-label {
2146
2239
  color: var(--color-base-600);
2147
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
+ }
2148
2250
  .Layer__ledger-account__entry-details__line-items {
2149
2251
  padding: var(--spacing-md);
2150
2252
  }
@@ -2263,225 +2365,395 @@
2263
2365
  background-color: var(--background-color);
2264
2366
  }
2265
2367
  .Layer__balance-sheet * {
2266
- color: var(--text-color);
2267
- stroke: var(--text-color);
2268
- font-family: Inter;
2269
- font-weight: 500;
2270
- font-style: normal;
2368
+ font-family: var(--font-family);
2369
+ font-feature-settings:
2370
+ "cv10" on,
2371
+ "cv01" on,
2372
+ "cv05" on,
2373
+ "cv08" on,
2374
+ "ss03" on;
2271
2375
  }
2272
- .Layer__balance-sheet__table {
2273
- display: grid;
2274
- grid-template-columns: 1fr auto;
2275
- gap: 1px 0;
2276
- font-size: 1rem;
2376
+ .Layer__balance-sheet tbody .Layer__table__empty-row:first-child {
2377
+ display: none;
2378
+ }
2379
+ .Layer__balance-sheet .Layer__balance-sheet__title {
2380
+ display: inline;
2381
+ flex: 1;
2382
+ font-size: var(--text-heading);
2383
+ margin: 0;
2384
+ }
2385
+ @container (max-width: 800px) {
2386
+ .Layer__balance-sheet .Layer__balance-sheet__header {
2387
+ flex-direction: column;
2388
+ gap: var(--spacing-sm);
2389
+ }
2390
+ }
2391
+ @container (max-width: 540px) {
2392
+ .Layer__balance-sheet .Layer__balance-sheet__header {
2393
+ flex-direction: row;
2394
+ gap: var(--spacing-sm);
2395
+ flex-wrap: wrap;
2396
+ }
2397
+ .Layer__balance-sheet .Layer__balance-sheet__header .Layer__balance-sheet__actions {
2398
+ flex-wrap: wrap;
2399
+ }
2400
+ .Layer__balance-sheet .Layer__balance-sheet__header .Layer__balance-sheet__actions__date-picker {
2401
+ flex-wrap: wrap;
2402
+ gap: var(--spacing-xs);
2403
+ }
2277
2404
  }
2278
2405
  .Layer__balance-sheet__header {
2279
2406
  display: flex;
2280
2407
  flex: 1;
2281
2408
  flex-direction: row;
2282
- padding: 0 1rem;
2409
+ padding: var(--spacing-sm) var(--spacing-md);
2283
2410
  }
2284
- .Layer__balance-sheet__title {
2285
- display: inline;
2411
+ .Layer__balance-sheet__header.Layer__balance-sheet__header--no-title .Layer__balance-sheet__actions {
2286
2412
  flex: 1;
2287
- font-size: 1.5rem;
2288
- font-weight: 600;
2289
- margin-bottom: 1.5rem;
2290
- margin-left: 1.5rem;
2291
- margin-right: 1.5rem;
2292
- }
2293
- .Layer__balance-sheet__date {
2294
- font-size: 0.75em;
2295
2413
  }
2296
- .Layer__balance-sheet__date::before {
2297
- content: " - as of ";
2414
+ .Layer__balance-sheet__header .Layer__balance-sheet__actions {
2415
+ display: flex;
2416
+ flex-direction: row;
2417
+ justify-content: space-between;
2418
+ gap: var(--spacing-xs);
2298
2419
  }
2299
- .Layer__balance-sheet__download-button {
2300
- align-self: center;
2301
- border: 2px solid var(--border-color);
2302
- background-color: var(--background-color);
2303
- padding: 0.5rem;
2304
- border-radius: var(--corner-radius);
2305
- margin-left: 0.5rem;
2420
+ .Layer__balance-sheet__header .Layer__balance-sheet__actions .Layer__balance-sheet__actions__date-picker {
2306
2421
  display: flex;
2307
2422
  flex-direction: row;
2308
- justify-content: center;
2309
- align-items: center;
2423
+ gap: var(--spacing-xs);
2310
2424
  }
2311
- .Layer__balance-sheet__download-button:active {
2312
- background-color: var(--active);
2425
+ .Layer__balance-sheet__table {
2426
+ width: 100%;
2427
+ border-collapse: collapse;
2313
2428
  }
2314
- .Layer__balance-sheet__download-button svg {
2315
- margin-right: 0.5rem;
2429
+ .Layer__balance-sheet__table .Layer__balance-sheet-row {
2430
+ font-size: 1em;
2431
+ height: 52px;
2316
2432
  }
2317
- .Layer__balance-sheet-date-picker {
2318
- align-items: center;
2319
- justify-content: center;
2320
- display: flex;
2433
+ .Layer__balance-sheet__table .Layer__balance-sheet-row .Layer__balance-sheet-cell__value .Layer__table-cell-content {
2434
+ justify-content: flex-end;
2321
2435
  }
2322
- .Layer__balance-sheet-date-picker button {
2323
- position: relative;
2324
- border: 2px solid var(--border-color);
2325
- background-color: var(--background-color);
2326
- padding: 0.5rem;
2327
- border-radius: var(--corner-radius);
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
+ }
2439
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-0 .Layer__balance-sheet-cell__label .Layer__table-cell-content {
2440
+ font-size: var(--text-lg);
2441
+ font-weight: 540;
2442
+ color: var(--text-color-primary);
2443
+ }
2444
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-1:not(.Layer__balance-sheet-row--display-children-true) {
2445
+ background-color: var(--color-base-50);
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
+ }
2450
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-1 .Layer__balance-sheet-cell__label {
2451
+ padding-left: calc(34px - var(--spacing-sm));
2452
+ }
2453
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-1 .Layer__table-cell-content {
2454
+ font-size: var(--text-md);
2455
+ font-variation-settings: "wght" var(--font-weight-bold);
2456
+ color: var(--color-base-700);
2457
+ }
2458
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-2:not(.Layer__balance-sheet-row--display-children-true) {
2459
+ background-color: var(--color-base-50);
2460
+ }
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 {
2462
+ padding-left: calc(80px - var(--spacing-sm));
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
+ }
2467
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-2 .Layer__table-cell-content {
2468
+ font-size: var(--text-md);
2469
+ font-weight: 460;
2470
+ color: var(--text-color-secondary);
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
+ }
2500
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--display-children-true {
2501
+ font-weight: bold;
2502
+ cursor: pointer;
2503
+ }
2504
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--display-children-false {
2505
+ font-weight: normal;
2506
+ }
2507
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--variant-summation {
2508
+ background: var(--color-base-100) !important;
2509
+ }
2510
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--variant-summation .Layer__table-cell-content {
2511
+ font-size: var(--text-md);
2512
+ font-variation-settings: "wght" var(--font-weight-bold);
2513
+ color: var(--text-color-primary);
2514
+ }
2515
+ .Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--expanded svg {
2516
+ transform: rotate(0deg);
2517
+ }
2518
+ .Layer__balance-sheet__table .Layer__table-cell--last {
2519
+ text-align: right;
2520
+ }
2521
+ .Layer__balance-sheet__table .Layer__table-cell__content-wrapper {
2328
2522
  display: flex;
2329
- flex-direction: row;
2330
- justify-content: center;
2331
2523
  align-items: center;
2332
2524
  }
2333
- .Layer__balance-sheet-date-picker button:active {
2334
- background-color: var(--active);
2525
+ .Layer__balance-sheet__table .Layer__table-cell__content-wrapper .Layer__table__expand-icon {
2526
+ margin: 0;
2527
+ transition: transform var(--transition-speed);
2528
+ transform: rotate(-90deg);
2335
2529
  }
2336
- .Layer__balance-sheet-date-picker button svg {
2337
- margin-right: 0.5rem;
2530
+ .Layer__balance-sheet__table .Layer__balance-sheet-cell__label {
2531
+ position: relative;
2338
2532
  }
2339
- .Layer__balance-sheet-date-picker button input {
2533
+ .Layer__balance-sheet__table .Layer__table-cell__active {
2534
+ display: none;
2535
+ width: 4px;
2536
+ height: 100%;
2340
2537
  position: absolute;
2341
- z-index: -1;
2342
- bottom: 0;
2538
+ background: var(--color-base-400);
2343
2539
  left: 0;
2344
- width: 1px;
2345
- height: 100%;
2346
- opacity: 0;
2540
+ top: 0;
2347
2541
  }
2348
- .Layer__balance-sheet-row {
2349
- padding: 1em;
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;
2547
+ }
2548
+ .Layer__balance-sheet__table .Layer__balance-sheet-cell__label .Layer__table-cell-content {
2549
+ padding-left: 0;
2550
+ }
2551
+ .Layer__balance-sheet__table .Layer__balance-sheet-cell__value--positive .Layer__table-cell-content::before {
2552
+ content: "$";
2553
+ }
2554
+ .Layer__balance-sheet__table .Layer__balance-sheet-cell__value--negative .Layer__table-cell-content::before {
2555
+ content: "-$";
2556
+ }
2557
+ .Layer__statement-of-cash-flow {
2558
+ border: 1px solid var(--border-color);
2559
+ border-radius: var(--corner-radius);
2350
2560
  background-color: var(--background-color);
2351
- font-size: 1em;
2352
2561
  }
2353
- .Layer__balance-sheet-row * {
2354
- min-height: 0;
2562
+ .Layer__statement-of-cash-flow .Layer__panel_view-header__controls {
2563
+ gap: 0;
2355
2564
  }
2356
- .Layer__balance-sheet-row__children {
2357
- display: grid;
2358
- grid-column: span 2;
2359
- grid-template-columns: subgrid;
2360
- grid-template-rows: 0fr;
2361
- overflow: hidden;
2362
- transition: grid-template-rows var(--transition-speed);
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;
2363
2573
  }
2364
- .Layer__balance-sheet-row__children--expanded {
2365
- grid-template-rows: 1fr;
2574
+ .Layer__statement-of-cash-flow tbody .Layer__table__empty-row:first-child {
2575
+ display: none;
2366
2576
  }
2367
- .Layer__balance-sheet-row__children--content {
2368
- min-height: 0;
2369
- display: grid;
2370
- grid-column: span 2;
2371
- grid-template-columns: subgrid;
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
+ }
2372
2588
  }
2373
- .Layer__balance-sheet-row__label {
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 {
2374
2612
  display: flex;
2375
- justify-content: flex-start;
2376
- align-items: center;
2613
+ flex: 1;
2614
+ flex-direction: row;
2615
+ padding: var(--spacing-sm) var(--spacing-md);
2377
2616
  }
2378
- .Layer__balance-sheet-row__label svg {
2379
- stroke: var(--text-color);
2380
- width: 1.25rem;
2381
- height: 1.25rem;
2382
- margin-right: 0.25rem;
2383
- transition: transform var(--transition-speed);
2384
- transform: rotate(-90deg);
2617
+ .Layer__statement-of-cash-flow__header.Layer__statement-of-cash-flow__header--no-title .Layer__statement-of-cash-flow__actions {
2618
+ flex: 1;
2385
2619
  }
2386
- .Layer__balance-sheet-row__label--expanded svg {
2387
- transform: rotate(0deg);
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);
2388
2625
  }
2389
- .Layer__balance-sheet-row__value {
2626
+ .Layer__statement-of-cash-flow__header .Layer__statement-of-cash-flow__actions .Layer__statement-of-cash-flow__actions__date-picker {
2390
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 {
2391
2640
  justify-content: flex-end;
2392
- align-items: center;
2393
2641
  }
2394
- .Layer__balance-sheet-row__value svg {
2395
- stroke: var(--text-color);
2396
- width: 1.25rem;
2397
- height: 1.25rem;
2398
- margin-right: 0.25rem;
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;
2399
2644
  }
2400
- .Layer__balance-sheet-row__value--amount-positive::before {
2401
- content: "$";
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);
2402
2649
  }
2403
- .Layer__balance-sheet-row__value--amount-negative::before {
2404
- content: "-$";
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);
2405
2652
  }
2406
- .Layer__balance-sheet-row__label--depth-0 {
2407
- font-weight: 700;
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);
2408
2655
  }
2409
- .Layer__balance-sheet-row__value--depth-0 {
2410
- font-weight: 700;
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));
2411
2658
  }
2412
- .Layer__balance-sheet-row__label--depth-1 {
2413
- padding-right: 2em;
2414
- padding-left: 2em;
2415
- font-size: 0.8em;
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));
2416
2661
  }
2417
- .Layer__balance-sheet-row__value--depth-1 {
2418
- font-size: 0.8em;
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);
2419
2666
  }
2420
- .Layer__balance-sheet-row__label--depth-2 {
2421
- padding-right: 2em;
2422
- padding-left: 4em;
2423
- font-size: 0.8em;
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);
2424
2669
  }
2425
- .Layer__balance-sheet-row__value--depth-2 {
2426
- font-size: 0.8em;
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));
2427
2672
  }
2428
- .Layer__balance-sheet-row__label--display-children-true {
2429
- font-weight: bold;
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));
2430
2675
  }
2431
- .Layer__balance-sheet-row__value--display-children-true {
2432
- font-weight: bold;
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);
2433
2680
  }
2434
- .Layer__balance-sheet-row__label--display-children-false {
2435
- font-weight: normal;
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);
2436
2683
  }
2437
- .Layer__balance-sheet-row__label--display-children-false svg {
2438
- display: none;
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));
2439
2686
  }
2440
- .Layer__balance-sheet-row__label--display-children-false {
2441
- font-weight: normal;
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));
2442
2689
  }
2443
- .Layer__balance-sheet-row__label--display-children-false svg {
2444
- display: none;
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);
2445
2694
  }
2446
- .Layer__balance-sheet-row__label--variant-summation {
2447
- font-weight: bold;
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);
2448
2708
  }
2449
- .Layer__balance-sheet-row__value--variant-summation {
2709
+ .Layer__statement-of-cash-flow__table .Layer__statement-of-cash-flow-row.Layer__statement-of-cash-flow-row--display-children-true {
2450
2710
  font-weight: bold;
2711
+ cursor: pointer;
2451
2712
  }
2452
- .Layer__balance-sheet-row__value--expanded {
2453
- color: transparent;
2454
- user-select: none;
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;
2455
2715
  }
2456
- @keyframes pulse {
2457
- from {
2458
- opacity: 100%;
2459
- }
2460
- to {
2461
- opacity: 20%;
2462
- }
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);
2463
2718
  }
2464
- .Layer__balance-sheet-row__skeleton-text {
2465
- width: 4rem;
2466
- background-color: var(--text-skeleton-color);
2467
- height: 1rem;
2468
- border-radius: var(--corner-radius);
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);
2469
2723
  }
2470
- .Layer__balance-sheet-row__children--skeleton {
2471
- background-color: var(--background-color);
2472
- padding-left: 1rem;
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);
2473
2726
  }
2474
- .Layer__balance-sheet-row__value--skeleton,
2475
- .Layer__balance-sheet-row__label--skeleton {
2476
- animation: 1s pulse ease-in-out alternate infinite;
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;
2477
2733
  }
2478
- .Layer__balance-sheet-row__value--skeleton svg,
2479
- .Layer__balance-sheet-row__label--skeleton svg {
2480
- stroke: var(--text-skeleton-color);
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: "-$";
2481
2750
  }
2482
2751
  .Layer__bank-transactions {
2483
2752
  max-width: var(--max-component-width);
2484
2753
  }
2754
+ .Layer__bank-transactions.Layer__component {
2755
+ overflow: auto;
2756
+ }
2485
2757
  .Layer__bank-transactions__loader-container {
2486
2758
  padding: var(--spacing-2xl);
2487
2759
  }
@@ -3873,6 +4145,13 @@
3873
4145
  gap: var(--spacing-sm);
3874
4146
  align-items: center;
3875
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
+ }
3876
4155
  .Layer__chart-of-accounts__table .Layer__table-row:not(.Layer__table-row--header) {
3877
4156
  cursor: pointer;
3878
4157
  }
@@ -3991,6 +4270,12 @@
3991
4270
  .Layer__table-cell.Layer__coa__actions .Layer__table-cell-content {
3992
4271
  padding-right: var(--spacing-md);
3993
4272
  }
4273
+ .Layer__chart-of-accounts__sidebar__header .actions {
4274
+ display: none;
4275
+ }
4276
+ .Layer__chart-of-accounts__form .actions {
4277
+ display: flex;
4278
+ }
3994
4279
  }
3995
4280
  @container (min-width: 761px) and (max-width: 1024px) {
3996
4281
  .Layer__chart-of-accounts .Layer__mobile--hidden {
@@ -4042,6 +4327,19 @@
4042
4327
  display: flex;
4043
4328
  align-items: stretch;
4044
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);
4045
4343
  }
4046
4344
  .Layer__journal-table .Layer__table-cell-content::before {
4047
4345
  background: var(--color-base-400);
@@ -4246,6 +4544,21 @@
4246
4544
  .Layer__journal__panel .Layer__panel__sidebar .Layer__panel__sidebar-content {
4247
4545
  width: 100%;
4248
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
+ }
4249
4562
  }
4250
4563
  @container (min-width: 500px) and (max-width: 1024px) {
4251
4564
  .Layer__journal__panel .Layer__details-list .Layer__component-header {
@@ -4994,6 +5307,8 @@
4994
5307
  background: rgba(255, 255, 255, 0.5);
4995
5308
  backdrop-filter: blur(6px);
4996
5309
  z-index: 1;
5310
+ border-top-left-radius: var(--border-radius-sm);
5311
+ border-top-right-radius: var(--border-radius-sm);
4997
5312
  }
4998
5313
  .Layer__panel__sidebar {
4999
5314
  width: 480px;
@@ -5008,6 +5323,7 @@
5008
5323
  background: var(--color-base-0);
5009
5324
  height: 100%;
5010
5325
  border-left: 1px solid var(--color-base-300);
5326
+ border-top-right-radius: var(--border-radius-sm);
5011
5327
  }
5012
5328
  .Layer__panel__sidebar .Layer__panel__sidebar-content {
5013
5329
  width: 480px;
@@ -5029,10 +5345,19 @@
5029
5345
  max-width: 100%;
5030
5346
  width: 100%;
5031
5347
  border-width: 0;
5348
+ border-radius: var(--border-radius-sm);
5032
5349
  opacity: 0.2;
5033
5350
  transform: translateY(-50px) scale(0.96);
5034
5351
  transition: transform 120ms ease-in-out, opacity 120ms ease-in-out;
5035
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
+ }
5036
5361
  .Layer__panel.Layer__panel--open .Layer__panel__sidebar {
5037
5362
  left: 0;
5038
5363
  top: 0;
@@ -5089,6 +5414,7 @@
5089
5414
  grid-template-columns: 1fr auto;
5090
5415
  overflow: hidden;
5091
5416
  background-color: var(--color-base-100);
5417
+ border-radius: var(--border-radius-sm);
5092
5418
  }
5093
5419
  .Layer__profit-and-loss-table__loader-container {
5094
5420
  padding: var(--spacing-2xl);
@@ -5440,6 +5766,10 @@
5440
5766
  .Layer__profit-and-loss__chart_with_summaries__chart-col {
5441
5767
  padding-left: var(--spacing-xs);
5442
5768
  }
5769
+ .Layer__panel--open .Layer__profit-and-loss-table {
5770
+ border-top-right-radius: 0;
5771
+ border-bottom-right-radius: 0;
5772
+ }
5443
5773
  }
5444
5774
  @container (max-width: 1023px) and (min-width: 760px) {
5445
5775
  .Layer__profit-and-loss-summaries,
@@ -5521,6 +5851,9 @@
5521
5851
  }
5522
5852
  header.Layer__profit-and-loss-detailed-charts__header--tablet {
5523
5853
  display: none;
5854
+ justify-content: flex-start;
5855
+ gap: var(--spacing-md);
5856
+ align-items: center;
5524
5857
  }
5525
5858
  @container (max-width: 1023px) and (min-width: 768px) {
5526
5859
  header.Layer__profit-and-loss-detailed-charts__header {
@@ -5533,7 +5866,7 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
5533
5866
  .Layer__profit-and-loss-detailed-charts__head {
5534
5867
  display: flex;
5535
5868
  flex-direction: column;
5536
- gap: var(--spacing-2xs);
5869
+ gap: var(--spacing-4xs);
5537
5870
  }
5538
5871
  .Layer__profit-and-loss-detailed-charts__head .title {
5539
5872
  color: var(--color-base-800);
@@ -5550,6 +5883,7 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
5550
5883
  .Layer__profit-and-loss-detailed-charts {
5551
5884
  width: 100%;
5552
5885
  background: var(--color-base-0);
5886
+ border-radius: var(--border-radius-sm);
5553
5887
  }
5554
5888
  .Layer__profit-and-loss-detailed-charts .chart-field {
5555
5889
  width: 100%;
@@ -5958,4 +6292,13 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
5958
6292
  margin-top: -12px;
5959
6293
  }
5960
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
+ }
5961
6304
  /*# sourceMappingURL=index.css.map */