@layerfi/components 0.1.28 → 0.1.30
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/README.md +116 -21
- package/dist/esm/index.js +7330 -7020
- package/dist/esm/index.js.map +4 -4
- package/dist/index.d.ts +299 -76
- package/dist/index.js +10604 -10295
- package/dist/index.js.map +4 -4
- package/dist/styles/index.css +221 -184
- package/dist/styles/index.css.map +3 -3
- package/package.json +1 -1
package/dist/styles/index.css
CHANGED
|
@@ -635,7 +635,7 @@
|
|
|
635
635
|
border-top-left-radius: 0;
|
|
636
636
|
border-bottom-left-radius: 0;
|
|
637
637
|
}
|
|
638
|
-
@
|
|
638
|
+
@container (min-width: 760px) {
|
|
639
639
|
.Layer__date-month-picker__wrapper.Layer__date-month-picker__wrapper--current-date-option .Layer__date-month-picker {
|
|
640
640
|
border-top-right-radius: 0;
|
|
641
641
|
border-bottom-right-radius: 0;
|
|
@@ -707,7 +707,7 @@
|
|
|
707
707
|
background: linear-gradient(-90deg, #fff 50%, rgba(255, 255, 255, 0) 100%);
|
|
708
708
|
z-index: 2;
|
|
709
709
|
}
|
|
710
|
-
@
|
|
710
|
+
@container (max-width: 760px) {
|
|
711
711
|
.Layer__date-month-picker__wrapper .Layer__date-month-picker {
|
|
712
712
|
border: none;
|
|
713
713
|
background: none;
|
|
@@ -1500,14 +1500,44 @@
|
|
|
1500
1500
|
width: calc(100% + 60px);
|
|
1501
1501
|
margin-left: -30px;
|
|
1502
1502
|
}
|
|
1503
|
-
.Layer__category-menu {
|
|
1504
|
-
width: 17rem;
|
|
1505
|
-
}
|
|
1506
1503
|
.Layer__category-menu.Layer__category-menu--full {
|
|
1507
1504
|
width: 100%;
|
|
1508
1505
|
max-width: 100%;
|
|
1509
1506
|
flex: 1;
|
|
1510
1507
|
}
|
|
1508
|
+
.Layer__category-menu__drawer-btn {
|
|
1509
|
+
display: flex;
|
|
1510
|
+
flex: 1;
|
|
1511
|
+
width: 100%;
|
|
1512
|
+
color: var(--color-base-500);
|
|
1513
|
+
padding: 8px;
|
|
1514
|
+
box-sizing: border-box;
|
|
1515
|
+
position: relative;
|
|
1516
|
+
border: 1px solid var(--border-color);
|
|
1517
|
+
border-radius: var(--input-border-radius);
|
|
1518
|
+
border-width: 0px;
|
|
1519
|
+
box-shadow: 0px 0px 0px 1px var(--input-border-color), 0px 0px 0px 2px rgba(0, 0, 0, 0);
|
|
1520
|
+
margin: 1px;
|
|
1521
|
+
font-family: var(--font-family);
|
|
1522
|
+
font-size: var(--input-font-size);
|
|
1523
|
+
line-height: 140%;
|
|
1524
|
+
background-color: var(--color-base-0);
|
|
1525
|
+
min-height: 39px;
|
|
1526
|
+
align-items: center;
|
|
1527
|
+
cursor: pointer;
|
|
1528
|
+
}
|
|
1529
|
+
.Layer__category-menu__drawer-btn:hover {
|
|
1530
|
+
color: var(--text-color-primary);
|
|
1531
|
+
background-color: var(--color-base-50);
|
|
1532
|
+
}
|
|
1533
|
+
.Layer__category-menu__drawer-btn.Layer__category-menu__drawer-btn--selected {
|
|
1534
|
+
color: var(--text-color-primary);
|
|
1535
|
+
}
|
|
1536
|
+
.Layer__category-menu__drawer-btn .Layer__category-menu__drawer-btn__arrow {
|
|
1537
|
+
position: absolute;
|
|
1538
|
+
right: 12px;
|
|
1539
|
+
top: 12px;
|
|
1540
|
+
}
|
|
1511
1541
|
@media screen and (max-width: 400px) {
|
|
1512
1542
|
.Layer__select__menu-portal .Layer__select__option {
|
|
1513
1543
|
font-size: var(--text-sm) !important;
|
|
@@ -1796,6 +1826,12 @@
|
|
|
1796
1826
|
transform: scaleX(0.98);
|
|
1797
1827
|
opacity: 0;
|
|
1798
1828
|
}
|
|
1829
|
+
.Layer__table__empty-row {
|
|
1830
|
+
background: var(--color-base-100);
|
|
1831
|
+
height: var(--spacing-2xs);
|
|
1832
|
+
border-top: 1px solid var(--color-base-200);
|
|
1833
|
+
border-bottom: 1px solid var(--color-base-200);
|
|
1834
|
+
}
|
|
1799
1835
|
.Layer__tabs {
|
|
1800
1836
|
display: flex;
|
|
1801
1837
|
width: max-content;
|
|
@@ -2069,6 +2105,41 @@
|
|
|
2069
2105
|
align-self: flex-start;
|
|
2070
2106
|
}
|
|
2071
2107
|
}
|
|
2108
|
+
.Layer__panel_view-main {
|
|
2109
|
+
display: flex;
|
|
2110
|
+
flex-direction: column;
|
|
2111
|
+
gap: var(--spacing-md);
|
|
2112
|
+
container-type: inline-size;
|
|
2113
|
+
}
|
|
2114
|
+
.Layer__panel_view-header {
|
|
2115
|
+
display: flex;
|
|
2116
|
+
width: 100%;
|
|
2117
|
+
border-bottom: 1px solid var(--color-base-200);
|
|
2118
|
+
container-type: inline-size;
|
|
2119
|
+
}
|
|
2120
|
+
.Layer__panel_view-header__content {
|
|
2121
|
+
padding: var(--spacing-lg);
|
|
2122
|
+
display: flex;
|
|
2123
|
+
align-items: center;
|
|
2124
|
+
justify-content: space-between;
|
|
2125
|
+
width: 100%;
|
|
2126
|
+
max-width: 1406px;
|
|
2127
|
+
}
|
|
2128
|
+
.Layer__panel_view-header__controls {
|
|
2129
|
+
display: flex;
|
|
2130
|
+
align-items: center;
|
|
2131
|
+
gap: var(--spacing-sm);
|
|
2132
|
+
}
|
|
2133
|
+
@container (max-width: 760px) {
|
|
2134
|
+
.Layer__panel_view-header__content {
|
|
2135
|
+
flex-direction: column;
|
|
2136
|
+
align-items: flex-start;
|
|
2137
|
+
gap: var(--spacing-sm);
|
|
2138
|
+
}
|
|
2139
|
+
.Layer__panel_view-header__content .Layer__heading {
|
|
2140
|
+
align-self: flex-start;
|
|
2141
|
+
}
|
|
2142
|
+
}
|
|
2072
2143
|
.Layer__ledger-account__index {
|
|
2073
2144
|
background-color: var(--color-base-0);
|
|
2074
2145
|
width: 100%;
|
|
@@ -2233,221 +2304,153 @@
|
|
|
2233
2304
|
background-color: var(--background-color);
|
|
2234
2305
|
}
|
|
2235
2306
|
.Layer__balance-sheet * {
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
display: grid;
|
|
2244
|
-
grid-template-columns: 1fr auto;
|
|
2245
|
-
gap: 1px 0;
|
|
2246
|
-
font-size: 1rem;
|
|
2307
|
+
font-family: var(--font-family);
|
|
2308
|
+
font-feature-settings:
|
|
2309
|
+
"cv10" on,
|
|
2310
|
+
"cv01" on,
|
|
2311
|
+
"cv05" on,
|
|
2312
|
+
"cv08" on,
|
|
2313
|
+
"ss03" on;
|
|
2247
2314
|
}
|
|
2248
|
-
.Layer__balance-
|
|
2249
|
-
display:
|
|
2250
|
-
flex: 1;
|
|
2251
|
-
flex-direction: row;
|
|
2252
|
-
padding: 0 1rem;
|
|
2315
|
+
.Layer__balance-sheet tbody .Layer__table__empty-row:first-child {
|
|
2316
|
+
display: none;
|
|
2253
2317
|
}
|
|
2254
|
-
.Layer__balance-sheet__title {
|
|
2318
|
+
.Layer__balance-sheet .Layer__balance-sheet__title {
|
|
2255
2319
|
display: inline;
|
|
2256
2320
|
flex: 1;
|
|
2257
|
-
font-size:
|
|
2258
|
-
|
|
2259
|
-
margin-bottom: 1.5rem;
|
|
2260
|
-
margin-left: 1.5rem;
|
|
2261
|
-
margin-right: 1.5rem;
|
|
2321
|
+
font-size: var(--text-heading);
|
|
2322
|
+
margin: 0;
|
|
2262
2323
|
}
|
|
2263
|
-
|
|
2264
|
-
|
|
2324
|
+
@container (max-width: 800px) {
|
|
2325
|
+
.Layer__balance-sheet .Layer__balance-sheet__header {
|
|
2326
|
+
flex-direction: column;
|
|
2327
|
+
gap: var(--spacing-sm);
|
|
2328
|
+
}
|
|
2329
|
+
}
|
|
2330
|
+
@container (max-width: 540px) {
|
|
2331
|
+
.Layer__balance-sheet .Layer__balance-sheet__header {
|
|
2332
|
+
flex-direction: row;
|
|
2333
|
+
gap: var(--spacing-sm);
|
|
2334
|
+
flex-wrap: wrap;
|
|
2335
|
+
}
|
|
2336
|
+
.Layer__balance-sheet .Layer__balance-sheet__header .Layer__balance-sheet__actions {
|
|
2337
|
+
flex-wrap: wrap;
|
|
2338
|
+
}
|
|
2339
|
+
.Layer__balance-sheet .Layer__balance-sheet__header .Layer__balance-sheet__actions__date-picker {
|
|
2340
|
+
flex-wrap: wrap;
|
|
2341
|
+
gap: var(--spacing-xs);
|
|
2342
|
+
}
|
|
2265
2343
|
}
|
|
2266
|
-
|
|
2267
|
-
|
|
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
|
+
}
|
|
2268
2351
|
}
|
|
2269
|
-
.Layer__balance-
|
|
2270
|
-
align-self: center;
|
|
2271
|
-
border: 2px solid var(--border-color);
|
|
2272
|
-
background-color: var(--background-color);
|
|
2273
|
-
padding: 0.5rem;
|
|
2274
|
-
border-radius: var(--corner-radius);
|
|
2275
|
-
margin-left: 0.5rem;
|
|
2352
|
+
.Layer__balance-sheet__header {
|
|
2276
2353
|
display: flex;
|
|
2354
|
+
flex: 1;
|
|
2277
2355
|
flex-direction: row;
|
|
2278
|
-
|
|
2279
|
-
align-items: center;
|
|
2280
|
-
}
|
|
2281
|
-
.Layer__balance-sheet__download-button:active {
|
|
2282
|
-
background-color: var(--active);
|
|
2356
|
+
padding: var(--spacing-sm) var(--spacing-md);
|
|
2283
2357
|
}
|
|
2284
|
-
.Layer__balance-
|
|
2285
|
-
|
|
2358
|
+
.Layer__balance-sheet__header.Layer__balance-sheet__header--no-title .Layer__balance-sheet__actions {
|
|
2359
|
+
flex: 1;
|
|
2286
2360
|
}
|
|
2287
|
-
.Layer__balance-
|
|
2288
|
-
align-items: center;
|
|
2289
|
-
justify-content: center;
|
|
2361
|
+
.Layer__balance-sheet__header .Layer__balance-sheet__actions {
|
|
2290
2362
|
display: flex;
|
|
2363
|
+
flex-direction: row;
|
|
2364
|
+
justify-content: space-between;
|
|
2365
|
+
gap: var(--spacing-xs);
|
|
2291
2366
|
}
|
|
2292
|
-
.Layer__balance-
|
|
2293
|
-
position: relative;
|
|
2294
|
-
border: 2px solid var(--border-color);
|
|
2295
|
-
background-color: var(--background-color);
|
|
2296
|
-
padding: 0.5rem;
|
|
2297
|
-
border-radius: var(--corner-radius);
|
|
2367
|
+
.Layer__balance-sheet__header .Layer__balance-sheet__actions .Layer__balance-sheet__actions__date-picker {
|
|
2298
2368
|
display: flex;
|
|
2299
2369
|
flex-direction: row;
|
|
2300
|
-
|
|
2301
|
-
align-items: center;
|
|
2302
|
-
}
|
|
2303
|
-
.Layer__balance-sheet-date-picker button:active {
|
|
2304
|
-
background-color: var(--active);
|
|
2305
|
-
}
|
|
2306
|
-
.Layer__balance-sheet-date-picker button svg {
|
|
2307
|
-
margin-right: 0.5rem;
|
|
2370
|
+
gap: var(--spacing-xs);
|
|
2308
2371
|
}
|
|
2309
|
-
.Layer__balance-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
bottom: 0;
|
|
2313
|
-
left: 0;
|
|
2314
|
-
width: 1px;
|
|
2315
|
-
height: 100%;
|
|
2316
|
-
opacity: 0;
|
|
2372
|
+
.Layer__balance-sheet__table {
|
|
2373
|
+
width: 100%;
|
|
2374
|
+
border-collapse: collapse;
|
|
2317
2375
|
}
|
|
2318
|
-
.Layer__balance-sheet-row {
|
|
2319
|
-
padding: 1em;
|
|
2320
|
-
background-color: var(--background-color);
|
|
2376
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row {
|
|
2321
2377
|
font-size: 1em;
|
|
2378
|
+
height: 52px;
|
|
2322
2379
|
}
|
|
2323
|
-
.Layer__balance-sheet-row
|
|
2324
|
-
min-height: 0;
|
|
2325
|
-
}
|
|
2326
|
-
.Layer__balance-sheet-row__children {
|
|
2327
|
-
display: grid;
|
|
2328
|
-
grid-column: span 2;
|
|
2329
|
-
grid-template-columns: subgrid;
|
|
2330
|
-
grid-template-rows: 0fr;
|
|
2331
|
-
overflow: hidden;
|
|
2332
|
-
transition: grid-template-rows var(--transition-speed);
|
|
2333
|
-
}
|
|
2334
|
-
.Layer__balance-sheet-row__children--expanded {
|
|
2335
|
-
grid-template-rows: 1fr;
|
|
2336
|
-
}
|
|
2337
|
-
.Layer__balance-sheet-row__children--content {
|
|
2338
|
-
min-height: 0;
|
|
2339
|
-
display: grid;
|
|
2340
|
-
grid-column: span 2;
|
|
2341
|
-
grid-template-columns: subgrid;
|
|
2342
|
-
}
|
|
2343
|
-
.Layer__balance-sheet-row__label {
|
|
2344
|
-
display: flex;
|
|
2345
|
-
justify-content: flex-start;
|
|
2346
|
-
align-items: center;
|
|
2347
|
-
}
|
|
2348
|
-
.Layer__balance-sheet-row__label svg {
|
|
2349
|
-
stroke: var(--text-color);
|
|
2350
|
-
width: 1.25rem;
|
|
2351
|
-
height: 1.25rem;
|
|
2352
|
-
margin-right: 0.25rem;
|
|
2353
|
-
transition: transform var(--transition-speed);
|
|
2354
|
-
transform: rotate(-90deg);
|
|
2355
|
-
}
|
|
2356
|
-
.Layer__balance-sheet-row__label--expanded svg {
|
|
2357
|
-
transform: rotate(0deg);
|
|
2358
|
-
}
|
|
2359
|
-
.Layer__balance-sheet-row__value {
|
|
2360
|
-
display: flex;
|
|
2380
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row .Layer__balance-sheet-cell__value .Layer__table-cell-content {
|
|
2361
2381
|
justify-content: flex-end;
|
|
2362
|
-
align-items: center;
|
|
2363
|
-
}
|
|
2364
|
-
.Layer__balance-sheet-row__value svg {
|
|
2365
|
-
stroke: var(--text-color);
|
|
2366
|
-
width: 1.25rem;
|
|
2367
|
-
height: 1.25rem;
|
|
2368
|
-
margin-right: 0.25rem;
|
|
2369
|
-
}
|
|
2370
|
-
.Layer__balance-sheet-row__value--amount-positive::before {
|
|
2371
|
-
content: "$";
|
|
2372
2382
|
}
|
|
2373
|
-
.Layer__balance-sheet-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
font-weight: 700;
|
|
2383
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-0 .Layer__balance-sheet-cell__label .Layer__table-cell-content {
|
|
2384
|
+
font-size: var(--text-lg);
|
|
2385
|
+
font-weight: 540;
|
|
2386
|
+
color: var(--text-color-primary);
|
|
2378
2387
|
}
|
|
2379
|
-
.Layer__balance-sheet-
|
|
2380
|
-
|
|
2388
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-1:not(.Layer__balance-sheet-row--display-children-true) {
|
|
2389
|
+
background-color: var(--color-base-50);
|
|
2381
2390
|
}
|
|
2382
|
-
.Layer__balance-sheet-
|
|
2383
|
-
padding-
|
|
2384
|
-
padding-left: 2em;
|
|
2385
|
-
font-size: 0.8em;
|
|
2391
|
+
.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));
|
|
2386
2393
|
}
|
|
2387
|
-
.Layer__balance-sheet-
|
|
2388
|
-
font-size:
|
|
2394
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-1 .Layer__table-cell-content {
|
|
2395
|
+
font-size: var(--text-md);
|
|
2396
|
+
font-variation-settings: "wght" var(--font-weight-bold);
|
|
2397
|
+
color: var(--color-base-700);
|
|
2389
2398
|
}
|
|
2390
|
-
.Layer__balance-sheet-
|
|
2391
|
-
|
|
2392
|
-
padding-left: 4em;
|
|
2393
|
-
font-size: 0.8em;
|
|
2399
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-2:not(.Layer__balance-sheet-row--display-children-true) {
|
|
2400
|
+
background-color: var(--color-base-50);
|
|
2394
2401
|
}
|
|
2395
|
-
.Layer__balance-sheet-
|
|
2396
|
-
|
|
2402
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-2 .Layer__balance-sheet-cell__label {
|
|
2403
|
+
padding-left: calc(80px - var(--spacing-sm));
|
|
2397
2404
|
}
|
|
2398
|
-
.Layer__balance-sheet-
|
|
2399
|
-
font-
|
|
2405
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--depth-2 .Layer__table-cell-content {
|
|
2406
|
+
font-size: var(--text-md);
|
|
2407
|
+
font-weight: 460;
|
|
2408
|
+
color: var(--text-color-secondary);
|
|
2400
2409
|
}
|
|
2401
|
-
.Layer__balance-sheet-
|
|
2410
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--display-children-true {
|
|
2402
2411
|
font-weight: bold;
|
|
2412
|
+
cursor: pointer;
|
|
2403
2413
|
}
|
|
2404
|
-
.Layer__balance-sheet-
|
|
2414
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--display-children-false {
|
|
2405
2415
|
font-weight: normal;
|
|
2406
2416
|
}
|
|
2407
|
-
.Layer__balance-sheet-
|
|
2408
|
-
|
|
2417
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--variant-summation {
|
|
2418
|
+
background: var(--color-base-100);
|
|
2409
2419
|
}
|
|
2410
|
-
.Layer__balance-sheet-
|
|
2411
|
-
font-
|
|
2420
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--variant-summation .Layer__table-cell-content {
|
|
2421
|
+
font-size: var(--text-md);
|
|
2422
|
+
font-variation-settings: "wght" var(--font-weight-bold);
|
|
2423
|
+
color: var(--text-color-primary);
|
|
2412
2424
|
}
|
|
2413
|
-
.Layer__balance-sheet-
|
|
2414
|
-
|
|
2425
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row.Layer__balance-sheet-row--expanded svg {
|
|
2426
|
+
transform: rotate(0deg);
|
|
2415
2427
|
}
|
|
2416
|
-
.Layer__balance-
|
|
2417
|
-
|
|
2428
|
+
.Layer__balance-sheet__table .Layer__table-cell--last {
|
|
2429
|
+
text-align: right;
|
|
2418
2430
|
}
|
|
2419
|
-
.Layer__balance-
|
|
2420
|
-
|
|
2431
|
+
.Layer__balance-sheet__table .Layer__table-cell__content-wrapper {
|
|
2432
|
+
display: flex;
|
|
2433
|
+
align-items: center;
|
|
2421
2434
|
}
|
|
2422
|
-
.Layer__balance-
|
|
2423
|
-
|
|
2424
|
-
|
|
2435
|
+
.Layer__balance-sheet__table .Layer__table-cell__content-wrapper .Layer__table__expand-icon {
|
|
2436
|
+
margin: 0;
|
|
2437
|
+
transition: transform var(--transition-speed);
|
|
2438
|
+
transform: rotate(-90deg);
|
|
2425
2439
|
}
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
opacity: 100%;
|
|
2429
|
-
}
|
|
2430
|
-
to {
|
|
2431
|
-
opacity: 20%;
|
|
2432
|
-
}
|
|
2440
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-row {
|
|
2441
|
+
border-left: 4px solid transparent;
|
|
2433
2442
|
}
|
|
2434
|
-
.Layer__balance-sheet-
|
|
2435
|
-
|
|
2436
|
-
background-color: var(--text-skeleton-color);
|
|
2437
|
-
height: 1rem;
|
|
2438
|
-
border-radius: var(--corner-radius);
|
|
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);
|
|
2439
2445
|
}
|
|
2440
|
-
.Layer__balance-sheet-
|
|
2441
|
-
|
|
2442
|
-
padding-left: 1rem;
|
|
2446
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-cell__label .Layer__table-cell-content {
|
|
2447
|
+
padding-left: 0;
|
|
2443
2448
|
}
|
|
2444
|
-
.Layer__balance-sheet-
|
|
2445
|
-
|
|
2446
|
-
animation: 1s pulse ease-in-out alternate infinite;
|
|
2449
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-cell__value--positive .Layer__table-cell-content::before {
|
|
2450
|
+
content: "$";
|
|
2447
2451
|
}
|
|
2448
|
-
.Layer__balance-sheet-
|
|
2449
|
-
|
|
2450
|
-
stroke: var(--text-skeleton-color);
|
|
2452
|
+
.Layer__balance-sheet__table .Layer__balance-sheet-cell__value--negative .Layer__table-cell-content::before {
|
|
2453
|
+
content: "-$";
|
|
2451
2454
|
}
|
|
2452
2455
|
.Layer__bank-transactions {
|
|
2453
2456
|
max-width: var(--max-component-width);
|
|
@@ -2469,6 +2472,8 @@
|
|
|
2469
2472
|
}
|
|
2470
2473
|
.Layer__bank-transactions__header.Layer__bank-transactions__header--mobile {
|
|
2471
2474
|
background-color: transparent;
|
|
2475
|
+
max-width: 414px;
|
|
2476
|
+
margin: auto;
|
|
2472
2477
|
}
|
|
2473
2478
|
.Layer__bank-transactions__header.Layer__bank-transactions__header--mobile,
|
|
2474
2479
|
.Layer__bank-transactions__header.Layer__bank-transactions__header--with-date-picker {
|
|
@@ -2569,7 +2574,7 @@
|
|
|
2569
2574
|
flex: 1;
|
|
2570
2575
|
color: var(--text-color-primary);
|
|
2571
2576
|
white-space: nowrap;
|
|
2572
|
-
|
|
2577
|
+
padding-left: 10px;
|
|
2573
2578
|
text-overflow: ellipsis;
|
|
2574
2579
|
overflow: hidden;
|
|
2575
2580
|
display: inline-flex;
|
|
@@ -2739,6 +2744,9 @@
|
|
|
2739
2744
|
.Layer__expanded-bank-transaction-row__file-upload {
|
|
2740
2745
|
padding: 0 var(--spacing-md);
|
|
2741
2746
|
padding-bottom: var(--spacing-sm);
|
|
2747
|
+
display: flex;
|
|
2748
|
+
align-items: center;
|
|
2749
|
+
gap: 10px;
|
|
2742
2750
|
}
|
|
2743
2751
|
.Layer__bank-transaction-row__actions-cell {
|
|
2744
2752
|
border-left: 1px solid var(--border-color);
|
|
@@ -3562,6 +3570,8 @@
|
|
|
3562
3570
|
gap: var(--spacing-sm);
|
|
3563
3571
|
list-style: none;
|
|
3564
3572
|
overflow: hidden;
|
|
3573
|
+
max-width: 414px;
|
|
3574
|
+
margin: auto;
|
|
3565
3575
|
}
|
|
3566
3576
|
.Layer__bank-transaction-mobile-list-item {
|
|
3567
3577
|
padding: 0;
|
|
@@ -3744,6 +3754,9 @@
|
|
|
3744
3754
|
padding-bottom: var(--spacing-lg);
|
|
3745
3755
|
font-size: 18px;
|
|
3746
3756
|
}
|
|
3757
|
+
.Layer__bank-transaction-mobile-list-item__categories_list-container {
|
|
3758
|
+
width: 100%;
|
|
3759
|
+
}
|
|
3747
3760
|
.Layer__component-container.Layer__chart-of-accounts {
|
|
3748
3761
|
display: flex;
|
|
3749
3762
|
align-items: stretch;
|
|
@@ -4360,8 +4373,12 @@
|
|
|
4360
4373
|
left: 0;
|
|
4361
4374
|
right: 0;
|
|
4362
4375
|
bottom: 0;
|
|
4376
|
+
opacity: 0;
|
|
4363
4377
|
z-index: 1000;
|
|
4364
|
-
transition: background 0.
|
|
4378
|
+
transition: background 0.2s ease-in-out, opacity 0.2s ease-in-out;
|
|
4379
|
+
}
|
|
4380
|
+
.Layer__drawer-background.open.closing {
|
|
4381
|
+
opacity: 0;
|
|
4365
4382
|
}
|
|
4366
4383
|
.Layer__drawer-background.open {
|
|
4367
4384
|
display: block;
|
|
@@ -4370,6 +4387,7 @@
|
|
|
4370
4387
|
}
|
|
4371
4388
|
.Layer__drawer {
|
|
4372
4389
|
position: fixed;
|
|
4390
|
+
display: flex;
|
|
4373
4391
|
bottom: -100%;
|
|
4374
4392
|
left: 0;
|
|
4375
4393
|
right: 0;
|
|
@@ -4378,9 +4396,13 @@
|
|
|
4378
4396
|
width: 100%;
|
|
4379
4397
|
max-height: 80%;
|
|
4380
4398
|
overflow-y: auto;
|
|
4381
|
-
padding:
|
|
4399
|
+
padding: 0 14px;
|
|
4382
4400
|
border-radius: var(--spacing-md) var(--spacing-md) 0px 0px;
|
|
4383
4401
|
transition: bottom 0.2s ease-in-out;
|
|
4402
|
+
border: 28px solid var(--color-base-0);
|
|
4403
|
+
border-left: 14px solid var(--color-base-0);
|
|
4404
|
+
border-right: 14px solid var(--color-base-0);
|
|
4405
|
+
box-sizing: border-box;
|
|
4384
4406
|
}
|
|
4385
4407
|
.Layer__drawer::after {
|
|
4386
4408
|
position: absolute;
|
|
@@ -4390,12 +4412,24 @@
|
|
|
4390
4412
|
background-color: var(--color-base-50);
|
|
4391
4413
|
left: 50%;
|
|
4392
4414
|
transform: translateX(-50%);
|
|
4393
|
-
top:
|
|
4415
|
+
top: 0px;
|
|
4394
4416
|
border-radius: 80px;
|
|
4395
4417
|
}
|
|
4396
|
-
.Layer__drawer.open {
|
|
4418
|
+
.Layer__drawer.open:not(.closing) {
|
|
4397
4419
|
bottom: 0;
|
|
4398
4420
|
}
|
|
4421
|
+
@media (min-width: 414px) {
|
|
4422
|
+
.Layer__drawer {
|
|
4423
|
+
max-height: calc(82% - 32px);
|
|
4424
|
+
max-width: 414px;
|
|
4425
|
+
margin-left: auto;
|
|
4426
|
+
margin-right: auto;
|
|
4427
|
+
border-radius: var(--spacing-md);
|
|
4428
|
+
}
|
|
4429
|
+
.Layer__drawer.open:not(.closing) {
|
|
4430
|
+
bottom: 32px;
|
|
4431
|
+
}
|
|
4432
|
+
}
|
|
4399
4433
|
.Layer__chevron {
|
|
4400
4434
|
stroke: var(--text-color);
|
|
4401
4435
|
transition: transform 0.33s;
|
|
@@ -4466,7 +4500,7 @@
|
|
|
4466
4500
|
justify-content: center;
|
|
4467
4501
|
flex: 1;
|
|
4468
4502
|
max-width: 272px;
|
|
4469
|
-
min-height:
|
|
4503
|
+
min-height: 115px;
|
|
4470
4504
|
padding: var(--spacing-2xs);
|
|
4471
4505
|
border-radius: var(--border-radius-sm);
|
|
4472
4506
|
background: var(--base-transparent-1);
|
|
@@ -4475,6 +4509,9 @@
|
|
|
4475
4509
|
.Layer__linked-accounts__new-account.--as-widget {
|
|
4476
4510
|
min-height: 90px;
|
|
4477
4511
|
}
|
|
4512
|
+
.Layer__linked-accounts__new-account.--show-ledger-balance {
|
|
4513
|
+
min-height: 135px;
|
|
4514
|
+
}
|
|
4478
4515
|
.Layer__linked-accounts__new-account:hover {
|
|
4479
4516
|
background: var(--base-transparent-2);
|
|
4480
4517
|
}
|