@layerfi/components 0.1.22 → 0.1.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/index.js +3026 -1657
- package/dist/esm/index.js.map +4 -4
- package/dist/index.d.ts +438 -27
- package/dist/index.js +3153 -1787
- package/dist/index.js.map +4 -4
- package/dist/styles/index.css +519 -1
- package/dist/styles/index.css.map +3 -3
- package/package.json +1 -1
package/dist/styles/index.css
CHANGED
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
.Layer__component,
|
|
6
6
|
.Layer__view,
|
|
7
7
|
.Layer__select__menu-portal,
|
|
8
|
-
.Layer__tooltip
|
|
8
|
+
.Layer__tooltip,
|
|
9
|
+
.Layer__toasts-container,
|
|
10
|
+
.Layer__drawer {
|
|
9
11
|
--color-black: #1a1a1a;
|
|
10
12
|
--color-white: white;
|
|
11
13
|
--color-info-success: hsl(145, 45%, 42%);
|
|
@@ -194,6 +196,28 @@
|
|
|
194
196
|
.Layer__sortable-col.sort--asc .Layer__sort-arrows .asc-arrow {
|
|
195
197
|
stroke: var(--color-base-1000);
|
|
196
198
|
}
|
|
199
|
+
.Layer__actionable-list {
|
|
200
|
+
list-style: none;
|
|
201
|
+
margin: 0;
|
|
202
|
+
padding: 0;
|
|
203
|
+
}
|
|
204
|
+
.Layer__actionable-list li {
|
|
205
|
+
padding: var(--spacing-xs) 0;
|
|
206
|
+
gap: var(--spacing-2xs);
|
|
207
|
+
border-bottom: 1px solid var(--color-base-100);
|
|
208
|
+
box-sizing: border-box;
|
|
209
|
+
font-size: 12px;
|
|
210
|
+
cursor: pointer;
|
|
211
|
+
display: flex;
|
|
212
|
+
align-items: center;
|
|
213
|
+
justify-content: space-between;
|
|
214
|
+
}
|
|
215
|
+
.Layer__actionable-list li.Layer__actionable-list-item--secondary {
|
|
216
|
+
color: var(--color-base-500);
|
|
217
|
+
}
|
|
218
|
+
.Layer__actionable-list li.Layer__actionable-list-item--secondary.Layer__actionable-list-item--as-link:hover {
|
|
219
|
+
color: var(--color-base-1000);
|
|
220
|
+
}
|
|
197
221
|
.Layer__actionable_row {
|
|
198
222
|
display: flex;
|
|
199
223
|
padding: var(--spacing-md);
|
|
@@ -321,6 +345,9 @@
|
|
|
321
345
|
transition: all 150ms ease-out;
|
|
322
346
|
padding: var(--spacing-2xs) var(--spacing-sm);
|
|
323
347
|
}
|
|
348
|
+
.Layer__btn.Layer__btn--full-width {
|
|
349
|
+
width: 100%;
|
|
350
|
+
}
|
|
324
351
|
.Layer__btn.Layer__btn--with-primary-icon {
|
|
325
352
|
padding: 0;
|
|
326
353
|
}
|
|
@@ -382,6 +409,9 @@
|
|
|
382
409
|
color: var(--btn-secondary-color);
|
|
383
410
|
background: var(--btn-secondary-bg-color);
|
|
384
411
|
}
|
|
412
|
+
.Layer__download-retry-btn {
|
|
413
|
+
width: 122px;
|
|
414
|
+
}
|
|
385
415
|
.Layer__btn--primary {
|
|
386
416
|
color: var(--btn-color-primary);
|
|
387
417
|
background: var(--btn-bg-color-primary);
|
|
@@ -583,6 +613,26 @@
|
|
|
583
613
|
.Layer__chart_y-axis-tick tspan {
|
|
584
614
|
font-size: var(--text-sm);
|
|
585
615
|
}
|
|
616
|
+
.Layer__date-month-picker__wrapper {
|
|
617
|
+
display: flex;
|
|
618
|
+
align-items: center;
|
|
619
|
+
position: relative;
|
|
620
|
+
}
|
|
621
|
+
.Layer__date-month-picker__wrapper .Layer__date-month-picker__current-button {
|
|
622
|
+
border-top-left-radius: 0;
|
|
623
|
+
border-bottom-left-radius: 0;
|
|
624
|
+
}
|
|
625
|
+
@media screen and (min-width: 500px) {
|
|
626
|
+
.Layer__date-month-picker__wrapper.Layer__date-month-picker__wrapper--current-date-option .Layer__date-month-picker {
|
|
627
|
+
border-top-right-radius: 0;
|
|
628
|
+
border-bottom-right-radius: 0;
|
|
629
|
+
}
|
|
630
|
+
.Layer__date-month-picker__wrapper .Layer__date-month-picker__current-button {
|
|
631
|
+
border: 1px solid var(--input-border-color);
|
|
632
|
+
border-left: none;
|
|
633
|
+
box-shadow: none;
|
|
634
|
+
}
|
|
635
|
+
}
|
|
586
636
|
.Layer__date-month-picker {
|
|
587
637
|
width: 210px;
|
|
588
638
|
font-size: 14px;
|
|
@@ -644,6 +694,35 @@
|
|
|
644
694
|
background: linear-gradient(-90deg, #fff 50%, rgba(255, 255, 255, 0) 100%);
|
|
645
695
|
z-index: 2;
|
|
646
696
|
}
|
|
697
|
+
@media screen and (max-width: 500px) {
|
|
698
|
+
.Layer__date-month-picker__wrapper .Layer__date-month-picker {
|
|
699
|
+
border: none;
|
|
700
|
+
background: none;
|
|
701
|
+
width: 175px;
|
|
702
|
+
}
|
|
703
|
+
.Layer__date-month-picker__wrapper .Layer__date-month-picker__button {
|
|
704
|
+
margin: 0 0.125rem;
|
|
705
|
+
box-shadow: 0px 1px 2px 0px var(--base-transparent-6, rgba(16, 24, 40, 0.06)), 0px 0px 0px 1px var(--color-base-300);
|
|
706
|
+
border-radius: 4px;
|
|
707
|
+
}
|
|
708
|
+
.Layer__date-month-picker__wrapper .Layer__date-month-picker__effect-blur {
|
|
709
|
+
right: 0;
|
|
710
|
+
max-width: 70px;
|
|
711
|
+
background: linear-gradient(-90deg, #f7f8fa 75%, rgba(255, 255, 255, 0) 100%);
|
|
712
|
+
}
|
|
713
|
+
.Layer__date-month-picker__wrapper .Layer__date-month-picker__button--disabled {
|
|
714
|
+
background-color: var(--color-base-200);
|
|
715
|
+
}
|
|
716
|
+
.Layer__date-month-picker__wrapper .Layer__date-month-picker__labels-container {
|
|
717
|
+
width: 550px;
|
|
718
|
+
}
|
|
719
|
+
.Layer__date-month-picker__wrapper .Layer__date-month-picker__label {
|
|
720
|
+
padding-left: 0;
|
|
721
|
+
padding-right: 75px;
|
|
722
|
+
justify-content: flex-end;
|
|
723
|
+
font-size: 12px;
|
|
724
|
+
}
|
|
725
|
+
}
|
|
647
726
|
.Layer__hover-menu {
|
|
648
727
|
position: relative;
|
|
649
728
|
display: flex;
|
|
@@ -754,6 +833,11 @@
|
|
|
754
833
|
0px 2px 4px 0px var(--base-transparent-6),
|
|
755
834
|
0px 0px 0px 1px var(--base-transparent-4);
|
|
756
835
|
}
|
|
836
|
+
.Layer__component--no-bg {
|
|
837
|
+
border-width: 0;
|
|
838
|
+
box-shadow: none;
|
|
839
|
+
background: transparent;
|
|
840
|
+
}
|
|
757
841
|
.Layer__component-header {
|
|
758
842
|
padding: var(--spacing-md);
|
|
759
843
|
display: flex;
|
|
@@ -1017,6 +1101,21 @@
|
|
|
1017
1101
|
height: 36px;
|
|
1018
1102
|
border-radius: 6px;
|
|
1019
1103
|
}
|
|
1104
|
+
.Layer__toggle.Layer__toggle--xsmall {
|
|
1105
|
+
height: 36px;
|
|
1106
|
+
border-radius: 6px;
|
|
1107
|
+
}
|
|
1108
|
+
.Layer__toggle.Layer__toggle--xsmall .Layer__toggle-option input + span {
|
|
1109
|
+
height: 32px;
|
|
1110
|
+
border-radius: 6px;
|
|
1111
|
+
}
|
|
1112
|
+
.Layer__toggle.Layer__toggle--xsmall .Layer__toggle-option .Layer__toggle-option-content {
|
|
1113
|
+
font-size: 12px;
|
|
1114
|
+
}
|
|
1115
|
+
.Layer__toggle.Layer__toggle--xsmall .Layer__toggle__thumb {
|
|
1116
|
+
height: 34px;
|
|
1117
|
+
border-radius: 6px;
|
|
1118
|
+
}
|
|
1020
1119
|
.Layer__toggle-option {
|
|
1021
1120
|
position: relative;
|
|
1022
1121
|
cursor: pointer;
|
|
@@ -1548,6 +1647,84 @@
|
|
|
1548
1647
|
transform: scaleX(0.98);
|
|
1549
1648
|
opacity: 0;
|
|
1550
1649
|
}
|
|
1650
|
+
.Layer__tabs {
|
|
1651
|
+
display: flex;
|
|
1652
|
+
width: max-content;
|
|
1653
|
+
align-items: center;
|
|
1654
|
+
box-sizing: border-box;
|
|
1655
|
+
padding: 2px;
|
|
1656
|
+
height: 38px;
|
|
1657
|
+
margin: 1px;
|
|
1658
|
+
cursor: pointer;
|
|
1659
|
+
position: relative;
|
|
1660
|
+
isolation: isolate;
|
|
1661
|
+
gap: var(--spacing-xs);
|
|
1662
|
+
}
|
|
1663
|
+
.Layer__tabs .Layer__tabs-option-content {
|
|
1664
|
+
display: flex;
|
|
1665
|
+
align-items: center;
|
|
1666
|
+
gap: var(--spacing-xs);
|
|
1667
|
+
}
|
|
1668
|
+
.Layer__tabs-option__icon {
|
|
1669
|
+
line-height: 11px;
|
|
1670
|
+
}
|
|
1671
|
+
.Layer__tabs-option {
|
|
1672
|
+
position: relative;
|
|
1673
|
+
cursor: pointer;
|
|
1674
|
+
z-index: 2;
|
|
1675
|
+
}
|
|
1676
|
+
.Layer__tabs-option input {
|
|
1677
|
+
position: absolute;
|
|
1678
|
+
opacity: 0;
|
|
1679
|
+
width: 1px;
|
|
1680
|
+
}
|
|
1681
|
+
.Layer__tabs-option input + span {
|
|
1682
|
+
box-sizing: border-box;
|
|
1683
|
+
padding: var(--spacing-xs) var(--spacing-3xs);
|
|
1684
|
+
height: 36px;
|
|
1685
|
+
color: var(--text-color-secondary);
|
|
1686
|
+
font-family: var(--font-family);
|
|
1687
|
+
font-size: var(--btn-font-size);
|
|
1688
|
+
cursor: pointer;
|
|
1689
|
+
transition: color var(--transition-speed) ease-in-out, background-color 150ms ease-in-out;
|
|
1690
|
+
justify-content: center;
|
|
1691
|
+
border-bottom: 2px solid transparent;
|
|
1692
|
+
}
|
|
1693
|
+
.Layer__tabs-option input + span:hover {
|
|
1694
|
+
color: var(--text-color-primary);
|
|
1695
|
+
}
|
|
1696
|
+
.Layer__tabs-option input:checked + span {
|
|
1697
|
+
color: var(--text-color-primary);
|
|
1698
|
+
}
|
|
1699
|
+
.Layer__tabs-option input:disabled + span {
|
|
1700
|
+
cursor: not-allowed;
|
|
1701
|
+
color: var(--text-color-secondary);
|
|
1702
|
+
}
|
|
1703
|
+
.Layer__tabs-option:hover input + span {
|
|
1704
|
+
border-bottom: 2px solid var(--color-base-200);
|
|
1705
|
+
}
|
|
1706
|
+
.Layer__tabs-option:hover input:disabled + span,
|
|
1707
|
+
.Layer__tabs-option:hover input:checked + span {
|
|
1708
|
+
background-color: transparent;
|
|
1709
|
+
}
|
|
1710
|
+
.Layer__tabs.Layer__tabs--small .Layer__tabs-option input + span {
|
|
1711
|
+
height: 32px;
|
|
1712
|
+
border-radius: 6px;
|
|
1713
|
+
}
|
|
1714
|
+
.Layer__tabs__thumb {
|
|
1715
|
+
position: absolute;
|
|
1716
|
+
width: 100px;
|
|
1717
|
+
left: 0;
|
|
1718
|
+
bottom: 1px;
|
|
1719
|
+
z-index: 3;
|
|
1720
|
+
box-sizing: border-box;
|
|
1721
|
+
height: 2px;
|
|
1722
|
+
border-radius: 2px;
|
|
1723
|
+
background: var(--color-base-400);
|
|
1724
|
+
}
|
|
1725
|
+
.Layer__tabs--initialized .Layer__tabs__thumb {
|
|
1726
|
+
transition: left 150ms ease, width 150ms ease;
|
|
1727
|
+
}
|
|
1551
1728
|
.Layer__heading {
|
|
1552
1729
|
color: var(--text-color-primary);
|
|
1553
1730
|
font-size: var(--text-heading);
|
|
@@ -1654,6 +1831,26 @@
|
|
|
1654
1831
|
transform: rotate(-360deg);
|
|
1655
1832
|
}
|
|
1656
1833
|
}
|
|
1834
|
+
@keyframes fadeIn {
|
|
1835
|
+
from {
|
|
1836
|
+
opacity: 0;
|
|
1837
|
+
transform: translateY(20px);
|
|
1838
|
+
}
|
|
1839
|
+
to {
|
|
1840
|
+
opacity: 1;
|
|
1841
|
+
transform: translateY(0);
|
|
1842
|
+
}
|
|
1843
|
+
}
|
|
1844
|
+
@keyframes fadeOut {
|
|
1845
|
+
from {
|
|
1846
|
+
opacity: 1;
|
|
1847
|
+
transform: translateY(0);
|
|
1848
|
+
}
|
|
1849
|
+
to {
|
|
1850
|
+
opacity: 0;
|
|
1851
|
+
transform: translateY(20px);
|
|
1852
|
+
}
|
|
1853
|
+
}
|
|
1657
1854
|
.Layer__anim--rotating {
|
|
1658
1855
|
-webkit-animation: rotating 2s linear infinite;
|
|
1659
1856
|
-moz-animation: rotating 2s linear infinite;
|
|
@@ -2105,6 +2302,26 @@
|
|
|
2105
2302
|
.Layer__bank-transactions__header {
|
|
2106
2303
|
position: sticky;
|
|
2107
2304
|
left: 0;
|
|
2305
|
+
display: flex;
|
|
2306
|
+
width: 100%;
|
|
2307
|
+
align-items: flex-start;
|
|
2308
|
+
}
|
|
2309
|
+
.Layer__bank-transactions__header__content {
|
|
2310
|
+
display: flex;
|
|
2311
|
+
align-items: center;
|
|
2312
|
+
justify-content: space-between;
|
|
2313
|
+
}
|
|
2314
|
+
.Layer__bank-transactions__header.Layer__bank-transactions__header--mobile {
|
|
2315
|
+
background-color: transparent;
|
|
2316
|
+
}
|
|
2317
|
+
.Layer__bank-transactions__header.Layer__bank-transactions__header--mobile,
|
|
2318
|
+
.Layer__bank-transactions__header.Layer__bank-transactions__header--with-date-picker {
|
|
2319
|
+
flex-direction: column;
|
|
2320
|
+
}
|
|
2321
|
+
.Layer__bank-transactions__header.Layer__bank-transactions__header--mobile .Layer__bank-transactions__header__content,
|
|
2322
|
+
.Layer__bank-transactions__header.Layer__bank-transactions__header--with-date-picker .Layer__bank-transactions__header__content {
|
|
2323
|
+
width: 100%;
|
|
2324
|
+
padding-left: var(--spacing-3xs);
|
|
2108
2325
|
}
|
|
2109
2326
|
.Layer__bank-transaction-row {
|
|
2110
2327
|
top: 1px;
|
|
@@ -2613,6 +2830,7 @@
|
|
|
2613
2830
|
padding-left: var(--spacing-md);
|
|
2614
2831
|
padding-right: var(--spacing-md);
|
|
2615
2832
|
padding-top: var(--spacing-md);
|
|
2833
|
+
row-gap: var(--spacing-sm);
|
|
2616
2834
|
}
|
|
2617
2835
|
}
|
|
2618
2836
|
@container (max-width: 700px) {
|
|
@@ -2623,6 +2841,10 @@
|
|
|
2623
2841
|
top: 0px;
|
|
2624
2842
|
z-index: 2;
|
|
2625
2843
|
}
|
|
2844
|
+
.Layer__bank-transactions__header.Layer__bank-transactions__header--mobile {
|
|
2845
|
+
box-shadow: none;
|
|
2846
|
+
padding-bottom: var(--spacing-2xs);
|
|
2847
|
+
}
|
|
2626
2848
|
}
|
|
2627
2849
|
.Layer__tooltip.Layer__bank-transactions__tx-tooltip {
|
|
2628
2850
|
max-width: 250px;
|
|
@@ -2847,6 +3069,49 @@
|
|
|
2847
3069
|
border-color: transparent;
|
|
2848
3070
|
background-color: transparent;
|
|
2849
3071
|
}
|
|
3072
|
+
.Layer__bank-transaction-mobile-list-item__match-list {
|
|
3073
|
+
display: flex;
|
|
3074
|
+
flex-direction: column;
|
|
3075
|
+
align-items: center;
|
|
3076
|
+
width: 100%;
|
|
3077
|
+
margin: var(--spacing-md) 0;
|
|
3078
|
+
}
|
|
3079
|
+
.Layer__bank-transaction-mobile-list-item__match-item {
|
|
3080
|
+
width: 100%;
|
|
3081
|
+
padding: var(--spacing-xs) 0;
|
|
3082
|
+
display: flex;
|
|
3083
|
+
align-items: center;
|
|
3084
|
+
gap: var(--spacing-sm);
|
|
3085
|
+
border-bottom: 1px solid var(--color-base-50);
|
|
3086
|
+
}
|
|
3087
|
+
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__name {
|
|
3088
|
+
color: var(--color-base-500);
|
|
3089
|
+
}
|
|
3090
|
+
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__col-details {
|
|
3091
|
+
flex: 1;
|
|
3092
|
+
display: flex;
|
|
3093
|
+
flex-direction: column;
|
|
3094
|
+
}
|
|
3095
|
+
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__heading {
|
|
3096
|
+
display: flex;
|
|
3097
|
+
align-items: center;
|
|
3098
|
+
justify-content: space-between;
|
|
3099
|
+
width: 100%;
|
|
3100
|
+
}
|
|
3101
|
+
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__details {
|
|
3102
|
+
display: flex;
|
|
3103
|
+
justify-content: flex-end;
|
|
3104
|
+
color: var(--color-base-500);
|
|
3105
|
+
}
|
|
3106
|
+
.Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__col-status {
|
|
3107
|
+
width: 24px;
|
|
3108
|
+
min-width: 24px;
|
|
3109
|
+
display: flex;
|
|
3110
|
+
justify-content: flex-end;
|
|
3111
|
+
}
|
|
3112
|
+
.Layer__bank-transaction-mobile-list-item__match-item.Layer__bank-transaction-mobile-list-item__match-item--selected .Layer__bank-transaction-mobile-list-item__match-item__name {
|
|
3113
|
+
color: var(--color-base-1000);
|
|
3114
|
+
}
|
|
2850
3115
|
@container (max-width: 700px) {
|
|
2851
3116
|
.Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header {
|
|
2852
3117
|
display: none;
|
|
@@ -3130,6 +3395,172 @@
|
|
|
3130
3395
|
border-right-color: transparent;
|
|
3131
3396
|
}
|
|
3132
3397
|
}
|
|
3398
|
+
.Layer__bank-transactions__mobile-list {
|
|
3399
|
+
padding: 0;
|
|
3400
|
+
margin: 0;
|
|
3401
|
+
display: flex;
|
|
3402
|
+
flex-direction: column;
|
|
3403
|
+
gap: var(--spacing-sm);
|
|
3404
|
+
list-style: none;
|
|
3405
|
+
}
|
|
3406
|
+
.Layer__bank-transaction-mobile-list-item {
|
|
3407
|
+
padding: 0;
|
|
3408
|
+
margin: 0 var(--spacing-sm);
|
|
3409
|
+
background: var(--color-base-0);
|
|
3410
|
+
box-shadow: 0px 2px 2px 0px var(--color-base-200), 0px 4px 4px 0px var(--color-base-100);
|
|
3411
|
+
border-radius: var(--border-radius-sm);
|
|
3412
|
+
opacity: 0;
|
|
3413
|
+
transform: scale(0.96);
|
|
3414
|
+
transition: all 180ms ease-in-out;
|
|
3415
|
+
cursor: pointer;
|
|
3416
|
+
}
|
|
3417
|
+
.Layer__bank-transaction-mobile-list-item.show {
|
|
3418
|
+
opacity: 1;
|
|
3419
|
+
transform: scale(1);
|
|
3420
|
+
}
|
|
3421
|
+
.Layer__bank-transaction-mobile-list-item .Layer__bank-transaction-mobile-list-item__expanded-row {
|
|
3422
|
+
height: 0;
|
|
3423
|
+
overflow: hidden;
|
|
3424
|
+
transition: all 180ms ease-in-out;
|
|
3425
|
+
}
|
|
3426
|
+
.Layer__bank-transaction-mobile-list-item .Layer__text--error {
|
|
3427
|
+
padding: var(--spacing-sm) 0;
|
|
3428
|
+
font-size: 12px;
|
|
3429
|
+
text-align: center;
|
|
3430
|
+
}
|
|
3431
|
+
.Layer__bank-transaction-mobile-list-item__heading {
|
|
3432
|
+
display: flex;
|
|
3433
|
+
align-items: flex-start;
|
|
3434
|
+
justify-content: space-between;
|
|
3435
|
+
gap: var(--spacing-xs);
|
|
3436
|
+
padding: var(--spacing-sm);
|
|
3437
|
+
}
|
|
3438
|
+
.Layer__bank-transaction-mobile-list-item__heading__main {
|
|
3439
|
+
display: flex;
|
|
3440
|
+
flex-direction: column;
|
|
3441
|
+
max-width: 100%;
|
|
3442
|
+
}
|
|
3443
|
+
.Layer__bank-transaction-mobile-list-item__heading__account-name {
|
|
3444
|
+
color: var(--color-base-500);
|
|
3445
|
+
}
|
|
3446
|
+
.Layer__bank-transaction-mobile-list-item__categorized-name {
|
|
3447
|
+
color: var(--color-base-500);
|
|
3448
|
+
}
|
|
3449
|
+
.Layer__bank-transaction-mobile-list-item__heading__amount {
|
|
3450
|
+
display: flex;
|
|
3451
|
+
flex-direction: column;
|
|
3452
|
+
align-items: flex-end;
|
|
3453
|
+
gap: var(--spacing-3xs);
|
|
3454
|
+
font-size: 14px;
|
|
3455
|
+
}
|
|
3456
|
+
.Layer__bank-transaction-mobile-list-item__heading__date {
|
|
3457
|
+
color: var(--color-base-500);
|
|
3458
|
+
font-size: 12px;
|
|
3459
|
+
}
|
|
3460
|
+
.Layer__bank-transaction-mobile-list-item__amount-credit {
|
|
3461
|
+
color: var(--color-info-success);
|
|
3462
|
+
}
|
|
3463
|
+
.Layer__bank-transaction-mobile-list-item__value {
|
|
3464
|
+
display: flex;
|
|
3465
|
+
align-items: center;
|
|
3466
|
+
justify-content: flex-end;
|
|
3467
|
+
gap: var(--spacing-3xs);
|
|
3468
|
+
padding: 0 var(--spacing-sm);
|
|
3469
|
+
background-color: var(--base-transparent-2);
|
|
3470
|
+
border-bottom-left-radius: var(--border-radius-sm);
|
|
3471
|
+
border-bottom-right-radius: var(--border-radius-sm);
|
|
3472
|
+
transition: all 180ms ease-in-out;
|
|
3473
|
+
height: 0;
|
|
3474
|
+
overflow: hidden;
|
|
3475
|
+
box-sizing: border-box;
|
|
3476
|
+
opacity: 0;
|
|
3477
|
+
}
|
|
3478
|
+
.Layer__bank-transaction-mobile-list-item__value.open {
|
|
3479
|
+
height: auto;
|
|
3480
|
+
padding: var(--spacing-sm);
|
|
3481
|
+
opacity: 1;
|
|
3482
|
+
}
|
|
3483
|
+
.Layer__bank-transaction-mobile-list-item__value > .Layer__text {
|
|
3484
|
+
display: flex;
|
|
3485
|
+
align-items: center;
|
|
3486
|
+
gap: 12px;
|
|
3487
|
+
}
|
|
3488
|
+
.Layer__bank-transaction-mobile-list-item__toggle-row {
|
|
3489
|
+
display: flex;
|
|
3490
|
+
align-items: center;
|
|
3491
|
+
justify-content: space-between;
|
|
3492
|
+
gap: var(--spacing-3xs);
|
|
3493
|
+
padding: var(--spacing-4xs) var(--spacing-sm);
|
|
3494
|
+
}
|
|
3495
|
+
.Layer__bank-transaction-mobile-list-item__form-container {
|
|
3496
|
+
padding: var(--spacing-sm);
|
|
3497
|
+
display: flex;
|
|
3498
|
+
flex-direction: column;
|
|
3499
|
+
align-items: center;
|
|
3500
|
+
}
|
|
3501
|
+
.Layer__bank-transaction-mobile-list-item__personal-form {
|
|
3502
|
+
padding: var(--spacing-md) 0 var(--spacing-xs) 0;
|
|
3503
|
+
width: 100%;
|
|
3504
|
+
}
|
|
3505
|
+
.Layer__bank-transaction-mobile-list-item__business-form {
|
|
3506
|
+
width: 100%;
|
|
3507
|
+
}
|
|
3508
|
+
.Layer__bank-transaction-mobile-list-item__business-form .Layer__actionable-list {
|
|
3509
|
+
margin-bottom: var(--spacing-md);
|
|
3510
|
+
}
|
|
3511
|
+
.Layer__bank-transaction-mobile-list-item__split-and-match-form {
|
|
3512
|
+
width: 100%;
|
|
3513
|
+
}
|
|
3514
|
+
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__bank-transactions__table-cell__header {
|
|
3515
|
+
display: flex;
|
|
3516
|
+
align-items: center;
|
|
3517
|
+
justify-content: space-between;
|
|
3518
|
+
width: 100%;
|
|
3519
|
+
color: var(--color-base-500);
|
|
3520
|
+
padding-top: var(--spacing-xs);
|
|
3521
|
+
}
|
|
3522
|
+
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__bank-transactions__table-cell--split-entry__right-col {
|
|
3523
|
+
width: 100%;
|
|
3524
|
+
}
|
|
3525
|
+
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__bank-transactions__splits-inputs {
|
|
3526
|
+
padding: var(--spacing-sm) 0;
|
|
3527
|
+
}
|
|
3528
|
+
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__bank-transactions__splits-inputs .Layer__bank-transactions__table-cell--split-entry {
|
|
3529
|
+
display: flex;
|
|
3530
|
+
flex: 1;
|
|
3531
|
+
width: 100%;
|
|
3532
|
+
box-sizing: border-box;
|
|
3533
|
+
align-items: center;
|
|
3534
|
+
gap: var(--spacing-xs);
|
|
3535
|
+
padding-bottom: var(--spacing-xs);
|
|
3536
|
+
}
|
|
3537
|
+
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__split-amount-input {
|
|
3538
|
+
width: 112px;
|
|
3539
|
+
}
|
|
3540
|
+
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__split-amount-input.Layer__split-amount-input--first {
|
|
3541
|
+
width: 156px;
|
|
3542
|
+
}
|
|
3543
|
+
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__bank-transactions__table-cell--split-entry__merge-btn {
|
|
3544
|
+
width: 36px;
|
|
3545
|
+
height: 36px;
|
|
3546
|
+
}
|
|
3547
|
+
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__select__control {
|
|
3548
|
+
min-width: 150px;
|
|
3549
|
+
width: 100%;
|
|
3550
|
+
font-size: 12px;
|
|
3551
|
+
}
|
|
3552
|
+
.Layer__bank-transaction-mobile-list-item__split-and-match-form .Layer__add-new-split {
|
|
3553
|
+
color: var(--color-base-1000);
|
|
3554
|
+
}
|
|
3555
|
+
.Layer__bank-transaction-mobile-list-item__switch-form-btns {
|
|
3556
|
+
display: flex;
|
|
3557
|
+
align-items: center;
|
|
3558
|
+
justify-content: center;
|
|
3559
|
+
padding: var(--spacing-sm) 0;
|
|
3560
|
+
}
|
|
3561
|
+
.Layer__bank-transaction-mobile-list-item__switch-form-btns > .Layer__text-btn {
|
|
3562
|
+
color: var(--color-base-1000);
|
|
3563
|
+
}
|
|
3133
3564
|
.Layer__component-container.Layer__chart-of-accounts {
|
|
3134
3565
|
display: flex;
|
|
3135
3566
|
align-items: stretch;
|
|
@@ -3739,6 +4170,49 @@
|
|
|
3739
4170
|
margin-bottom: var(--spacing-xl);
|
|
3740
4171
|
color: var(--color-base-500);
|
|
3741
4172
|
}
|
|
4173
|
+
.Layer__drawer-background {
|
|
4174
|
+
position: fixed;
|
|
4175
|
+
display: none;
|
|
4176
|
+
top: 0;
|
|
4177
|
+
left: 0;
|
|
4178
|
+
right: 0;
|
|
4179
|
+
bottom: 0;
|
|
4180
|
+
z-index: 1000;
|
|
4181
|
+
transition: background 0.3s ease-in-out;
|
|
4182
|
+
}
|
|
4183
|
+
.Layer__drawer-background.open {
|
|
4184
|
+
display: block;
|
|
4185
|
+
opacity: 0.4;
|
|
4186
|
+
background: #242424;
|
|
4187
|
+
}
|
|
4188
|
+
.Layer__drawer {
|
|
4189
|
+
position: fixed;
|
|
4190
|
+
bottom: -100%;
|
|
4191
|
+
left: 0;
|
|
4192
|
+
right: 0;
|
|
4193
|
+
z-index: 9999;
|
|
4194
|
+
background: var(--color-base-100);
|
|
4195
|
+
width: 100%;
|
|
4196
|
+
max-height: 80%;
|
|
4197
|
+
overflow-y: auto;
|
|
4198
|
+
padding: var(--spacing-xl) 28px 28px 28px;
|
|
4199
|
+
border-radius: var(--spacing-md) var(--spacing-md) 0px 0px;
|
|
4200
|
+
transition: bottom 0.2s ease-in-out;
|
|
4201
|
+
}
|
|
4202
|
+
.Layer__drawer::after {
|
|
4203
|
+
position: absolute;
|
|
4204
|
+
content: "";
|
|
4205
|
+
width: 37px;
|
|
4206
|
+
height: 5px;
|
|
4207
|
+
background-color: var(--color-base-50);
|
|
4208
|
+
left: 50%;
|
|
4209
|
+
transform: translateX(-50%);
|
|
4210
|
+
top: 16px;
|
|
4211
|
+
border-radius: 80px;
|
|
4212
|
+
}
|
|
4213
|
+
.Layer__drawer.open {
|
|
4214
|
+
bottom: 0;
|
|
4215
|
+
}
|
|
3742
4216
|
.Layer__chevron {
|
|
3743
4217
|
stroke: var(--text-color);
|
|
3744
4218
|
transition: transform 0.33s;
|
|
@@ -5147,6 +5621,50 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
5147
5621
|
padding-top: 2px;
|
|
5148
5622
|
max-width: 100%;
|
|
5149
5623
|
}
|
|
5624
|
+
.Layer__toasts-container {
|
|
5625
|
+
position: fixed;
|
|
5626
|
+
bottom: 20px;
|
|
5627
|
+
right: 20px;
|
|
5628
|
+
display: flex;
|
|
5629
|
+
flex-direction: column-reverse;
|
|
5630
|
+
gap: 10px;
|
|
5631
|
+
z-index: 1000;
|
|
5632
|
+
}
|
|
5633
|
+
.Layer__toasts-container .Layer__toast {
|
|
5634
|
+
color: var(--color-base-0);
|
|
5635
|
+
background: var(--color-base-1000);
|
|
5636
|
+
border-radius: var(--spacing-3xs);
|
|
5637
|
+
padding: var(--spacing-xs) var(--spacing-md);
|
|
5638
|
+
opacity: 0;
|
|
5639
|
+
transform: translateY(20px);
|
|
5640
|
+
transition: opacity 0.6s linear, transform 0.6s linear;
|
|
5641
|
+
box-shadow:
|
|
5642
|
+
0px 4px 4px 0px var(--base-transparent-5, rgba(16, 24, 40, 0.05)),
|
|
5643
|
+
0px 3px 3px 0px var(--base-transparent-6, rgba(16, 24, 40, 0.06)),
|
|
5644
|
+
0px 2px 2px 0px var(--base-transparent-8, rgba(16, 24, 40, 0.08)),
|
|
5645
|
+
0px 1px 0px 0px var(--base-transparent-12, rgba(16, 24, 40, 0.12)),
|
|
5646
|
+
0px 0px 0px 1px var(--base-900, #05132f);
|
|
5647
|
+
}
|
|
5648
|
+
.Layer__toasts-container .Layer__toast p {
|
|
5649
|
+
margin: 0;
|
|
5650
|
+
font-size: 14px;
|
|
5651
|
+
color: var(--color-base-0);
|
|
5652
|
+
}
|
|
5653
|
+
.Layer__toast.enter {
|
|
5654
|
+
opacity: 1;
|
|
5655
|
+
transform: translateY(0);
|
|
5656
|
+
}
|
|
5657
|
+
.Layer__toast.exit {
|
|
5658
|
+
opacity: 0;
|
|
5659
|
+
transform: translateY(20px);
|
|
5660
|
+
transition: opacity 0.5s linear, transform 0.5s linear;
|
|
5661
|
+
}
|
|
5662
|
+
@media screen and (max-width: 400px) {
|
|
5663
|
+
.Layer__toasts-container {
|
|
5664
|
+
right: 50%;
|
|
5665
|
+
transform: translateX(50%);
|
|
5666
|
+
}
|
|
5667
|
+
}
|
|
5150
5668
|
.Layer__accounting-overview__summaries-row {
|
|
5151
5669
|
display: flex;
|
|
5152
5670
|
align-items: center;
|