@layerfi/components 0.1.0
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 +70 -0
- package/dist/esm/index.js +1615 -0
- package/dist/esm/index.js.map +7 -0
- package/dist/index.d.ts +595 -0
- package/dist/index.js +1647 -0
- package/dist/index.js.map +7 -0
- package/dist/styles/index.css +596 -0
- package/dist/styles/index.css.map +7 -0
- package/package.json +90 -0
|
@@ -0,0 +1,596 @@
|
|
|
1
|
+
@import "https://fonts.googleapis.com/css2?family=Inter";
|
|
2
|
+
|
|
3
|
+
/* src/styles/index.scss */
|
|
4
|
+
.Layer__profit-and-loss {
|
|
5
|
+
--border-color: #eaecf0;
|
|
6
|
+
--font-color: #101828;
|
|
7
|
+
--indicator-bar-color: #3c3c3c;
|
|
8
|
+
--background-color: white;
|
|
9
|
+
--active: #e0e9ff;
|
|
10
|
+
--income-bar-color: #0c48e5;
|
|
11
|
+
--expenses-bar-color: #6d8ee7;
|
|
12
|
+
width: 60rem;
|
|
13
|
+
background-color: white;
|
|
14
|
+
padding: 0.25rem;
|
|
15
|
+
}
|
|
16
|
+
.Layer__profit-and-loss * {
|
|
17
|
+
color: var(--font-color);
|
|
18
|
+
font-family: Inter;
|
|
19
|
+
font-weight: 500;
|
|
20
|
+
font-style: normal;
|
|
21
|
+
}
|
|
22
|
+
.Layer__profit-and-loss__title {
|
|
23
|
+
font-size: 1.5rem;
|
|
24
|
+
font-weight: 600;
|
|
25
|
+
margin-bottom: 1.5rem;
|
|
26
|
+
margin-left: 1.5rem;
|
|
27
|
+
margin-right: 1.5rem;
|
|
28
|
+
}
|
|
29
|
+
.Layer__profit-and-loss-table {
|
|
30
|
+
border: 1px solid var(--border-color);
|
|
31
|
+
border-radius: 0.5rem;
|
|
32
|
+
background-color: var(--border-color);
|
|
33
|
+
display: grid;
|
|
34
|
+
grid-template-columns: 1fr auto;
|
|
35
|
+
gap: 1px 0;
|
|
36
|
+
font-size: 1rem;
|
|
37
|
+
}
|
|
38
|
+
.Layer__profit-and-loss-row {
|
|
39
|
+
padding: 1em;
|
|
40
|
+
background-color: var(--background-color);
|
|
41
|
+
font-size: 1em;
|
|
42
|
+
}
|
|
43
|
+
.Layer__profit-and-loss-row__label {
|
|
44
|
+
display: flex;
|
|
45
|
+
justify-content: flex-start;
|
|
46
|
+
}
|
|
47
|
+
.Layer__profit-and-loss-row__value {
|
|
48
|
+
display: flex;
|
|
49
|
+
justify-content: flex-end;
|
|
50
|
+
}
|
|
51
|
+
.Layer__profit-and-loss-row__label--variant-NETPROFIT,
|
|
52
|
+
.Layer__profit-and-loss-row__label--variant-GROSS,
|
|
53
|
+
.Layer__profit-and-loss-row__label--variant-BEFORETAX {
|
|
54
|
+
border-top: 3px solid var(--border-color);
|
|
55
|
+
border-bottom: 3px solid var(--border-color);
|
|
56
|
+
}
|
|
57
|
+
.Layer__profit-and-loss-row__value--variant-NETPROFIT,
|
|
58
|
+
.Layer__profit-and-loss-row__value--variant-GROSS,
|
|
59
|
+
.Layer__profit-and-loss-row__value--variant-BEFORETAX {
|
|
60
|
+
border-top: 3px solid var(--border-color);
|
|
61
|
+
border-bottom: 3px solid var(--border-color);
|
|
62
|
+
}
|
|
63
|
+
.Layer__profit-and-loss-row__label--variant-NETPROFIT,
|
|
64
|
+
.Layer__profit-and-loss-row__value--variant-NETPROFIT {
|
|
65
|
+
border-bottom: 10px solid var(--border-color);
|
|
66
|
+
}
|
|
67
|
+
.Layer__profit-and-loss-row__value--amount-positive::before {
|
|
68
|
+
content: "$";
|
|
69
|
+
}
|
|
70
|
+
.Layer__profit-and-loss-row__value--amount-negative::before {
|
|
71
|
+
content: "-$";
|
|
72
|
+
}
|
|
73
|
+
.Layer__profit-and-loss-row__label--depth-0 {
|
|
74
|
+
font-weight: 700;
|
|
75
|
+
}
|
|
76
|
+
.Layer__profit-and-loss-row__value--depth-0 {
|
|
77
|
+
font-weight: 700;
|
|
78
|
+
}
|
|
79
|
+
.Layer__profit-and-loss-row__label--depth-1 {
|
|
80
|
+
padding-right: 2em;
|
|
81
|
+
padding-left: 2em;
|
|
82
|
+
font-size: 0.8em;
|
|
83
|
+
}
|
|
84
|
+
.Layer__profit-and-loss-row__value--depth-1 {
|
|
85
|
+
font-size: 0.8em;
|
|
86
|
+
}
|
|
87
|
+
.Layer__profit-and-loss-date-picker {
|
|
88
|
+
width: 20rem;
|
|
89
|
+
display: flex;
|
|
90
|
+
flex-direction: row;
|
|
91
|
+
justify-content: center;
|
|
92
|
+
align-items: center;
|
|
93
|
+
padding: 0.25rem;
|
|
94
|
+
margin: 0.5rem;
|
|
95
|
+
border: 1px solid var(--border-color);
|
|
96
|
+
border-radius: 0.5rem;
|
|
97
|
+
}
|
|
98
|
+
.Layer__profit-and-loss-date-picker__button {
|
|
99
|
+
padding: 0.25rem;
|
|
100
|
+
display: flex;
|
|
101
|
+
justify-content: center;
|
|
102
|
+
align-items: center;
|
|
103
|
+
text-align: center;
|
|
104
|
+
background-color: var(--background-color);
|
|
105
|
+
border: 0;
|
|
106
|
+
border-radius: 0.5rem;
|
|
107
|
+
}
|
|
108
|
+
.Layer__profit-and-loss-date-picker__button:active {
|
|
109
|
+
background-color: var(--active);
|
|
110
|
+
}
|
|
111
|
+
.Layer__profit-and-loss-date-picker__button-icon path {
|
|
112
|
+
stroke: var(--font-color);
|
|
113
|
+
}
|
|
114
|
+
.Layer__profit-and-loss-date-picker__label {
|
|
115
|
+
flex: 1;
|
|
116
|
+
font-size: 1rem;
|
|
117
|
+
display: flex;
|
|
118
|
+
justify-content: center;
|
|
119
|
+
align-items: center;
|
|
120
|
+
text-align: center;
|
|
121
|
+
}
|
|
122
|
+
.Layer__profit-and-loss-chart__bar--income {
|
|
123
|
+
fill: var(--income-bar-color);
|
|
124
|
+
}
|
|
125
|
+
.Layer__profit-and-loss-chart__bar--expenses {
|
|
126
|
+
fill: var(--expenses-bar-color);
|
|
127
|
+
}
|
|
128
|
+
.Layer__profit-and-loss-chart .recharts-cartesian-axis-tick-value tspan {
|
|
129
|
+
font-size: 0.75rem;
|
|
130
|
+
}
|
|
131
|
+
.Layer__profit-and-loss-chart .recharts-legend-wrapper {
|
|
132
|
+
margin-top: -1.25rem;
|
|
133
|
+
}
|
|
134
|
+
.Layer__profit-and-loss-chart .recharts-legend-item-text {
|
|
135
|
+
font-size: 1rem;
|
|
136
|
+
}
|
|
137
|
+
.Layer__profit-and-loss-chart .legend-item-0 {
|
|
138
|
+
fill: var(--income-bar-color);
|
|
139
|
+
}
|
|
140
|
+
.Layer__profit-and-loss-chart .legend-item-1 {
|
|
141
|
+
fill: var(--expenses-bar-color);
|
|
142
|
+
}
|
|
143
|
+
.Layer__profit-and-loss-chart__selection-indicator {
|
|
144
|
+
height: 0.25rem;
|
|
145
|
+
fill: var(--indicator-bar-color);
|
|
146
|
+
transition: x 0.5s;
|
|
147
|
+
}
|
|
148
|
+
.Layer__profit-and-loss-summaries {
|
|
149
|
+
display: flex;
|
|
150
|
+
flex: 1;
|
|
151
|
+
flex-direction: row;
|
|
152
|
+
justify-content: space-evenly;
|
|
153
|
+
}
|
|
154
|
+
.Layer__profit-and-loss-summaries__summary {
|
|
155
|
+
display: flex;
|
|
156
|
+
flex: 1;
|
|
157
|
+
flex-direction: column;
|
|
158
|
+
border: 1px solid var(--border-color);
|
|
159
|
+
border-radius: 0.5rem;
|
|
160
|
+
padding: 1.5rem;
|
|
161
|
+
margin-right: 1.5rem;
|
|
162
|
+
}
|
|
163
|
+
.Layer__profit-and-loss-summaries__summary:first-child {
|
|
164
|
+
margin-left: 1.5rem;
|
|
165
|
+
}
|
|
166
|
+
.Layer__profit-and-loss-summaries__title {
|
|
167
|
+
font-weight: 600;
|
|
168
|
+
font-size: 1.375rem;
|
|
169
|
+
margin-bottom: 0.75rem;
|
|
170
|
+
}
|
|
171
|
+
.Layer__profit-and-loss-summaries__month {
|
|
172
|
+
font-size: 1.125rem;
|
|
173
|
+
margin-bottom: 0.25rem;
|
|
174
|
+
}
|
|
175
|
+
.Layer__profit-and-loss-summaries__amount {
|
|
176
|
+
font-weight: 600;
|
|
177
|
+
font-size: 1.5rem;
|
|
178
|
+
}
|
|
179
|
+
.Layer__profit-and-loss-summaries__amount::before {
|
|
180
|
+
content: "$";
|
|
181
|
+
}
|
|
182
|
+
.Layer__balance-sheet {
|
|
183
|
+
--border-color: #eaecf0;
|
|
184
|
+
--font-color: #101828;
|
|
185
|
+
--indicator-bar-color: #3c3c3c;
|
|
186
|
+
--background-color: white;
|
|
187
|
+
--active: #e0e9ff;
|
|
188
|
+
--income-bar-color: #0c48e5;
|
|
189
|
+
--expenses-bar-color: #6d8ee7;
|
|
190
|
+
width: 60rem;
|
|
191
|
+
background-color: white;
|
|
192
|
+
padding: 0.25rem;
|
|
193
|
+
}
|
|
194
|
+
.Layer__balance-sheet * {
|
|
195
|
+
color: var(--font-color);
|
|
196
|
+
stroke: var(--font-color);
|
|
197
|
+
font-family: Inter;
|
|
198
|
+
font-weight: 500;
|
|
199
|
+
font-style: normal;
|
|
200
|
+
}
|
|
201
|
+
.Layer__balance-sheet__table {
|
|
202
|
+
border: 1px solid var(--border-color);
|
|
203
|
+
border-radius: 0.5rem;
|
|
204
|
+
background-color: var(--border-color);
|
|
205
|
+
display: grid;
|
|
206
|
+
grid-template-columns: 1fr auto;
|
|
207
|
+
gap: 1px 0;
|
|
208
|
+
font-size: 1rem;
|
|
209
|
+
}
|
|
210
|
+
.Layer__balance-sheet__header {
|
|
211
|
+
display: flex;
|
|
212
|
+
flex: 1;
|
|
213
|
+
flex-direction: row;
|
|
214
|
+
}
|
|
215
|
+
.Layer__balance-sheet__title {
|
|
216
|
+
display: inline;
|
|
217
|
+
flex: 1;
|
|
218
|
+
font-size: 1.5rem;
|
|
219
|
+
font-weight: 600;
|
|
220
|
+
margin-bottom: 1.5rem;
|
|
221
|
+
margin-left: 1.5rem;
|
|
222
|
+
margin-right: 1.5rem;
|
|
223
|
+
}
|
|
224
|
+
.Layer__balance-sheet__date {
|
|
225
|
+
font-size: 0.75em;
|
|
226
|
+
}
|
|
227
|
+
.Layer__balance-sheet__date::before {
|
|
228
|
+
content: " - as of ";
|
|
229
|
+
}
|
|
230
|
+
.Layer__balance-sheet__download-button {
|
|
231
|
+
align-self: center;
|
|
232
|
+
border: 2px solid var(--border-color);
|
|
233
|
+
background-color: var(--background-color);
|
|
234
|
+
padding: 0.5rem;
|
|
235
|
+
border-radius: 0.5rem;
|
|
236
|
+
margin-left: 0.5rem;
|
|
237
|
+
display: flex;
|
|
238
|
+
flex-direction: row;
|
|
239
|
+
justify-content: center;
|
|
240
|
+
align-items: center;
|
|
241
|
+
}
|
|
242
|
+
.Layer__balance-sheet__download-button:active {
|
|
243
|
+
background-color: var(--active);
|
|
244
|
+
}
|
|
245
|
+
.Layer__balance-sheet__download-button svg {
|
|
246
|
+
margin-right: 0.5rem;
|
|
247
|
+
}
|
|
248
|
+
.Layer__balance-sheet-row {
|
|
249
|
+
display: grid;
|
|
250
|
+
grid-template-columns: subgrid;
|
|
251
|
+
}
|
|
252
|
+
.Layer__balance-sheet-date-picker {
|
|
253
|
+
align-items: center;
|
|
254
|
+
justify-content: center;
|
|
255
|
+
display: flex;
|
|
256
|
+
}
|
|
257
|
+
.Layer__balance-sheet-date-picker button {
|
|
258
|
+
position: relative;
|
|
259
|
+
border: 2px solid var(--border-color);
|
|
260
|
+
background-color: var(--background-color);
|
|
261
|
+
padding: 0.5rem;
|
|
262
|
+
border-radius: 0.5rem;
|
|
263
|
+
display: flex;
|
|
264
|
+
flex-direction: row;
|
|
265
|
+
justify-content: center;
|
|
266
|
+
align-items: center;
|
|
267
|
+
}
|
|
268
|
+
.Layer__balance-sheet-date-picker button:active {
|
|
269
|
+
background-color: var(--active);
|
|
270
|
+
}
|
|
271
|
+
.Layer__balance-sheet-date-picker button svg {
|
|
272
|
+
margin-right: 0.5rem;
|
|
273
|
+
}
|
|
274
|
+
.Layer__balance-sheet-date-picker button input {
|
|
275
|
+
position: absolute;
|
|
276
|
+
z-index: -1;
|
|
277
|
+
bottom: 0;
|
|
278
|
+
left: 0;
|
|
279
|
+
width: 1px;
|
|
280
|
+
height: 100%;
|
|
281
|
+
}
|
|
282
|
+
.Layer__balance-sheet-row {
|
|
283
|
+
padding: 1em;
|
|
284
|
+
background-color: var(--background-color);
|
|
285
|
+
font-size: 1em;
|
|
286
|
+
}
|
|
287
|
+
.Layer__balance-sheet-row__label {
|
|
288
|
+
display: flex;
|
|
289
|
+
justify-content: flex-start;
|
|
290
|
+
align-items: center;
|
|
291
|
+
}
|
|
292
|
+
.Layer__balance-sheet-row__label svg {
|
|
293
|
+
stroke: var(--font-color);
|
|
294
|
+
width: 1.25rem;
|
|
295
|
+
height: 1.25rem;
|
|
296
|
+
margin-right: 0.25rem;
|
|
297
|
+
}
|
|
298
|
+
.Layer__balance-sheet-row__value {
|
|
299
|
+
display: flex;
|
|
300
|
+
justify-content: flex-end;
|
|
301
|
+
align-items: center;
|
|
302
|
+
}
|
|
303
|
+
.Layer__balance-sheet-row__value svg {
|
|
304
|
+
stroke: var(--font-color);
|
|
305
|
+
width: 1.25rem;
|
|
306
|
+
height: 1.25rem;
|
|
307
|
+
margin-right: 0.25rem;
|
|
308
|
+
}
|
|
309
|
+
.Layer__balance-sheet-row__value--amount-positive::before {
|
|
310
|
+
content: "$";
|
|
311
|
+
}
|
|
312
|
+
.Layer__balance-sheet-row__value--amount-negative::before {
|
|
313
|
+
content: "-$";
|
|
314
|
+
}
|
|
315
|
+
.Layer__balance-sheet-row__label--depth-0 {
|
|
316
|
+
font-weight: 700;
|
|
317
|
+
}
|
|
318
|
+
.Layer__balance-sheet-row__value--depth-0 {
|
|
319
|
+
font-weight: 700;
|
|
320
|
+
}
|
|
321
|
+
.Layer__balance-sheet-row__label--depth-1 {
|
|
322
|
+
padding-right: 2em;
|
|
323
|
+
padding-left: 2em;
|
|
324
|
+
font-size: 0.8em;
|
|
325
|
+
}
|
|
326
|
+
.Layer__balance-sheet-row__value--depth-1 {
|
|
327
|
+
font-size: 0.8em;
|
|
328
|
+
}
|
|
329
|
+
.Layer__balance-sheet-row__label--depth-2 {
|
|
330
|
+
padding-right: 2em;
|
|
331
|
+
padding-left: 4em;
|
|
332
|
+
font-size: 0.8em;
|
|
333
|
+
}
|
|
334
|
+
.Layer__balance-sheet-row__value--depth-2 {
|
|
335
|
+
font-size: 0.8em;
|
|
336
|
+
}
|
|
337
|
+
.Layer__balance-sheet-row__label--display-children-true {
|
|
338
|
+
font-weight: bold;
|
|
339
|
+
}
|
|
340
|
+
.Layer__balance-sheet-row__value--display-children-true {
|
|
341
|
+
font-weight: bold;
|
|
342
|
+
}
|
|
343
|
+
.Layer__balance-sheet-row__label--display-children-false {
|
|
344
|
+
font-weight: normal;
|
|
345
|
+
}
|
|
346
|
+
.Layer__balance-sheet-row__label--display-children-false svg {
|
|
347
|
+
display: none;
|
|
348
|
+
}
|
|
349
|
+
.Layer__balance-sheet-row__label--display-children-false {
|
|
350
|
+
font-weight: normal;
|
|
351
|
+
}
|
|
352
|
+
.Layer__balance-sheet-row__label--display-children-false svg {
|
|
353
|
+
display: none;
|
|
354
|
+
}
|
|
355
|
+
.Layer__pill {
|
|
356
|
+
background-color: var(--bank-transaction-buttons-selected-background-color);
|
|
357
|
+
color: var(--bank-transaction-table-text-color);
|
|
358
|
+
border-radius: 1rem;
|
|
359
|
+
padding: 0.25rem 0.5rem;
|
|
360
|
+
display: flex;
|
|
361
|
+
flex-direction: row;
|
|
362
|
+
align-items: center;
|
|
363
|
+
}
|
|
364
|
+
.Layer__pill svg {
|
|
365
|
+
margin-right: 0.25rem;
|
|
366
|
+
}
|
|
367
|
+
.Layer__bank-transactions {
|
|
368
|
+
--bank-transaction-buttons-border-color: #d0d5dd;
|
|
369
|
+
--bank-transaction-buttons-selected-background-color: #e0e9ff;
|
|
370
|
+
--bank-transaction-table-expanded-background-color: #f9f9f9;
|
|
371
|
+
--bank-transaction-table-background-color: white;
|
|
372
|
+
--bank-transaction-table-border-color: #eaecf0;
|
|
373
|
+
--bank-transaction-table-text-color: #101828;
|
|
374
|
+
--bank-transaction-positive-amount-text-color: #039855;
|
|
375
|
+
--bank-transaction-variable-amount-text-color: #475467;
|
|
376
|
+
margin: 3rem;
|
|
377
|
+
border-radius: 0.6rem;
|
|
378
|
+
border: 1px solid var(--bank-transaction-table-border-color);
|
|
379
|
+
background-color: var(--bank-transaction-table-background-color);
|
|
380
|
+
overflow: hidden;
|
|
381
|
+
width: 100rem;
|
|
382
|
+
}
|
|
383
|
+
.Layer__bank-transactions * {
|
|
384
|
+
font-family: Inter;
|
|
385
|
+
color: var(--bank-transaction-table-text-color);
|
|
386
|
+
font-style: normal;
|
|
387
|
+
font-weight: 500;
|
|
388
|
+
}
|
|
389
|
+
.Layer__bank-transactions__header {
|
|
390
|
+
display: flex;
|
|
391
|
+
padding: 1rem;
|
|
392
|
+
}
|
|
393
|
+
.Layer__bank-transactions__title {
|
|
394
|
+
display: flex;
|
|
395
|
+
align-items: center;
|
|
396
|
+
flex: 1;
|
|
397
|
+
justify-content: flex-start;
|
|
398
|
+
font-size: 1.5rem;
|
|
399
|
+
font-style: normal;
|
|
400
|
+
font-weight: 600;
|
|
401
|
+
line-height: 2rem;
|
|
402
|
+
margin: 0;
|
|
403
|
+
}
|
|
404
|
+
.Layer__bank-transactions__table {
|
|
405
|
+
display: grid;
|
|
406
|
+
grid-template-columns: repeat(3, 1fr) repeat(3, auto);
|
|
407
|
+
gap: 1px 0px;
|
|
408
|
+
background-color: var(--bank-transaction-table-border-color);
|
|
409
|
+
border-top: 1px solid var(--bank-transaction-table-border-color);
|
|
410
|
+
border-radius: 0.6rem;
|
|
411
|
+
}
|
|
412
|
+
.Layer__bank-transactions__table-cell--header {
|
|
413
|
+
display: flex;
|
|
414
|
+
align-items: center;
|
|
415
|
+
background-color: white;
|
|
416
|
+
font-size: 16px;
|
|
417
|
+
line-height: 20px;
|
|
418
|
+
overflow: clip;
|
|
419
|
+
padding: 1rem;
|
|
420
|
+
font-weight: bold;
|
|
421
|
+
text-align: left;
|
|
422
|
+
}
|
|
423
|
+
.Layer__bank-transactions__table-cell--header-amount {
|
|
424
|
+
justify-content: flex-end;
|
|
425
|
+
}
|
|
426
|
+
.Layer__bank-transaction-row__table-cell {
|
|
427
|
+
display: flex;
|
|
428
|
+
align-items: center;
|
|
429
|
+
background-color: white;
|
|
430
|
+
font-size: 16px;
|
|
431
|
+
line-height: 20px;
|
|
432
|
+
overflow: clip;
|
|
433
|
+
padding: 1rem;
|
|
434
|
+
}
|
|
435
|
+
.Layer__bank-transaction-row__table-cell--expanded {
|
|
436
|
+
background-color: var(--bank-transaction-table-expanded-background-color);
|
|
437
|
+
}
|
|
438
|
+
.Layer__bank-transaction-row__table-cell--actions {
|
|
439
|
+
justify-content: flex-end;
|
|
440
|
+
}
|
|
441
|
+
.Layer__bank-transaction-row__table-cell--date {
|
|
442
|
+
color: var(--bank-transaction-variable-amount-text-color);
|
|
443
|
+
}
|
|
444
|
+
.Layer__bank-transaction-row__table-cell--amount-credit {
|
|
445
|
+
justify-content: flex-end;
|
|
446
|
+
color: var(--bank-transaction-positive-amount-text-color);
|
|
447
|
+
}
|
|
448
|
+
.Layer__bank-transaction-row__table-cell--amount-credit::before {
|
|
449
|
+
content: "+$";
|
|
450
|
+
}
|
|
451
|
+
.Layer__bank-transaction-row__table-cell--amount-debit {
|
|
452
|
+
justify-content: flex-end;
|
|
453
|
+
color: var(--bank-transaction-variable-amount-text-color);
|
|
454
|
+
}
|
|
455
|
+
.Layer__bank-transaction-row__table-cell--amount-debit::before {
|
|
456
|
+
content: " $";
|
|
457
|
+
}
|
|
458
|
+
.Layer__bank-transaction-row__save-button {
|
|
459
|
+
cursor: pointer;
|
|
460
|
+
}
|
|
461
|
+
.Layer__bank-transaction-row__expand-button {
|
|
462
|
+
margin-left: 0.5rem;
|
|
463
|
+
cursor: pointer;
|
|
464
|
+
}
|
|
465
|
+
.Layer__category-menu {
|
|
466
|
+
width: 15rem;
|
|
467
|
+
}
|
|
468
|
+
.Layer__expanded-bank-transaction-row {
|
|
469
|
+
grid-column: 1/-1;
|
|
470
|
+
display: flex;
|
|
471
|
+
flex-direction: column;
|
|
472
|
+
background-color: var(--bank-transaction-table-expanded-background-color);
|
|
473
|
+
}
|
|
474
|
+
.Layer__expanded-bank-transaction-row__purpose-button {
|
|
475
|
+
padding: 0 1.5rem;
|
|
476
|
+
align-self: flex-start;
|
|
477
|
+
}
|
|
478
|
+
.Layer__expanded-bank-transaction-row__content {
|
|
479
|
+
padding: 0.75rem 1.5rem;
|
|
480
|
+
display: grid;
|
|
481
|
+
grid-template-columns: auto auto auto auto 1fr auto;
|
|
482
|
+
gap: 0;
|
|
483
|
+
}
|
|
484
|
+
.Layer__expanded-bank-transaction-row__table-cell {
|
|
485
|
+
padding: 0.25rem 0.75rem;
|
|
486
|
+
font-size: 0.875rem;
|
|
487
|
+
}
|
|
488
|
+
.Layer__expanded-bank-transaction-row__table-cell:not(:last-child) {
|
|
489
|
+
margin-right: 0.75rem;
|
|
490
|
+
}
|
|
491
|
+
.Layer__expanded-bank-transaction-row__table-cell:nth-child(6n+1) {
|
|
492
|
+
padding-left: 0;
|
|
493
|
+
margin-left: 0;
|
|
494
|
+
}
|
|
495
|
+
.Layer__expanded-bank-transaction-row__table-cell:nth-child(6n+6) {
|
|
496
|
+
padding-right: 0;
|
|
497
|
+
margin-right: 0;
|
|
498
|
+
padding-bottom: 0;
|
|
499
|
+
margin-bottom: 0.5rem;
|
|
500
|
+
display: flex;
|
|
501
|
+
flex-direction: column;
|
|
502
|
+
justify-content: flex-end;
|
|
503
|
+
}
|
|
504
|
+
.Layer__expanded-bank-transaction-row__table-cell--description textarea {
|
|
505
|
+
resize: none;
|
|
506
|
+
border: 1px solid var(--bank-transaction-buttons-border-color);
|
|
507
|
+
border-radius: 0.5rem;
|
|
508
|
+
}
|
|
509
|
+
.Layer__expanded-bank-transaction-row__table-cell--header {
|
|
510
|
+
font-weight: bold;
|
|
511
|
+
text-align: left;
|
|
512
|
+
}
|
|
513
|
+
.Layer__expanded-bank-transaction-row__button--split {
|
|
514
|
+
display: flex;
|
|
515
|
+
flex-direction: row;
|
|
516
|
+
align-items: center;
|
|
517
|
+
padding-top: 0.5rem;
|
|
518
|
+
}
|
|
519
|
+
.Layer__expanded-bank-transaction-row__button--merge {
|
|
520
|
+
display: flex;
|
|
521
|
+
flex-direction: row;
|
|
522
|
+
align-items: center;
|
|
523
|
+
padding-top: 0.5rem;
|
|
524
|
+
}
|
|
525
|
+
.Layer__expanded-bank-transaction-row__button--save {
|
|
526
|
+
border: 1px solid var(--bank-transaction-buttons-border-color);
|
|
527
|
+
border-radius: 0.5rem;
|
|
528
|
+
padding: 0.625rem 1rem;
|
|
529
|
+
background-color: var(--bank-transaction-buttons-selected-background-color);
|
|
530
|
+
font-weight: 600;
|
|
531
|
+
}
|
|
532
|
+
.Layer__expanded-bank-transaction-row__svg {
|
|
533
|
+
margin-right: 0.75rem;
|
|
534
|
+
}
|
|
535
|
+
.Layer__expanded-bank-transaction-row__table-cell--split-entry {
|
|
536
|
+
display: flex;
|
|
537
|
+
flex-direction: row;
|
|
538
|
+
margin-bottom: 0.5rem;
|
|
539
|
+
}
|
|
540
|
+
.Layer__expanded-bank-transaction-row__table-cell--split-entry input {
|
|
541
|
+
justify-content: stretch;
|
|
542
|
+
margin-left: 0.5rem;
|
|
543
|
+
border: 1px solid var(--bank-transaction-buttons-border-color);
|
|
544
|
+
border-radius: 0.5rem;
|
|
545
|
+
padding: 0.25rem;
|
|
546
|
+
width: 5rem;
|
|
547
|
+
}
|
|
548
|
+
.Layer__expanded-bank-transaction-row__split-amount--negative {
|
|
549
|
+
font-weight: bold;
|
|
550
|
+
color: red;
|
|
551
|
+
border: 2.5px dotted red;
|
|
552
|
+
}
|
|
553
|
+
.Layer__radio-button-group {
|
|
554
|
+
display: flex;
|
|
555
|
+
font-size: 1rem;
|
|
556
|
+
align-items: center;
|
|
557
|
+
flex: 1;
|
|
558
|
+
justify-content: flex-end;
|
|
559
|
+
padding-top: 0.5rem;
|
|
560
|
+
}
|
|
561
|
+
.Layer__radio-button-group__radio-button {
|
|
562
|
+
display: flex;
|
|
563
|
+
flex-direction: row;
|
|
564
|
+
}
|
|
565
|
+
.Layer__radio-button-group__radio-button input {
|
|
566
|
+
position: absolute;
|
|
567
|
+
opacity: 0;
|
|
568
|
+
width: 1px;
|
|
569
|
+
}
|
|
570
|
+
.Layer__radio-button-group__radio-button div {
|
|
571
|
+
padding: 0.6rem 1rem;
|
|
572
|
+
border: 1px solid var(--bank-transaction-buttons-border-color);
|
|
573
|
+
border-right: 0;
|
|
574
|
+
border-radius: 0;
|
|
575
|
+
font-weight: 600;
|
|
576
|
+
}
|
|
577
|
+
.Layer__radio-button-group__radio-button--size-small div {
|
|
578
|
+
padding: 0.25rem 1rem;
|
|
579
|
+
font-size: 0.875rem;
|
|
580
|
+
}
|
|
581
|
+
.Layer__radio-button-group__radio-button--size-large div {
|
|
582
|
+
padding: 0.6rem 1rem;
|
|
583
|
+
}
|
|
584
|
+
.Layer__radio-button-group__radio-button:first-of-type div {
|
|
585
|
+
border-start-start-radius: 0.6rem;
|
|
586
|
+
border-end-start-radius: 0.6rem;
|
|
587
|
+
}
|
|
588
|
+
.Layer__radio-button-group__radio-button:last-of-type div {
|
|
589
|
+
border-right: 1px solid var(--bank-transaction-buttons-border-color);
|
|
590
|
+
border-start-end-radius: 0.6rem;
|
|
591
|
+
border-end-end-radius: 0.6rem;
|
|
592
|
+
}
|
|
593
|
+
.Layer__radio-button-group__radio-button input:checked + div {
|
|
594
|
+
background: var(--bank-transaction-buttons-selected-background-color);
|
|
595
|
+
}
|
|
596
|
+
/*# sourceMappingURL=index.css.map */
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/styles/index.scss", "../../src/styles/profit_and_loss.scss", "../../src/styles/balance_sheet.scss"],
|
|
4
|
+
"sourcesContent": ["@import 'https://fonts.googleapis.com/css2?family=Inter';\n@import './profit_and_loss.scss';\n@import './balance_sheet.scss';\n\n.Layer__pill {\n background-color: var(--bank-transaction-buttons-selected-background-color);\n color: var(--bank-transaction-table-text-color);\n border-radius: 1rem;\n padding: 0.25rem 0.5rem;\n display: flex;\n flex-direction: row;\n align-items: center;\n\n & svg {\n margin-right: 0.25rem;\n }\n}\n\n.Layer__bank-transactions {\n --bank-transaction-buttons-border-color: #d0d5dd;\n --bank-transaction-buttons-selected-background-color: #e0e9ff;\n --bank-transaction-table-expanded-background-color: #f9f9f9;\n --bank-transaction-table-background-color: white;\n --bank-transaction-table-border-color: #eaecf0;\n --bank-transaction-table-text-color: #101828;\n --bank-transaction-positive-amount-text-color: #039855;\n --bank-transaction-variable-amount-text-color: #475467;\n\n margin: 3rem;\n border-radius: 0.6rem;\n border: 1px solid var(--bank-transaction-table-border-color);\n background-color: var(--bank-transaction-table-background-color);\n overflow: hidden;\n width: 100rem;\n}\n\n.Layer__bank-transactions * {\n font-family: Inter;\n color: var(--bank-transaction-table-text-color);\n font-style: normal;\n font-weight: 500;\n}\n\n.Layer__bank-transactions__header {\n display: flex;\n padding: 1rem;\n}\n\n.Layer__bank-transactions__title {\n display: flex;\n align-items: center;\n flex: 1;\n justify-content: flex-start;\n font-size: 1.5rem;\n font-style: normal;\n font-weight: 600;\n line-height: 2rem;\n margin: 0;\n}\n\n.Layer__bank-transactions__table {\n display: grid;\n grid-template-columns: repeat(3, 1fr) repeat(3, auto);\n gap: 1px 0px;\n background-color: var(--bank-transaction-table-border-color);\n border-top: 1px solid var(--bank-transaction-table-border-color);\n border-radius: 0.6rem;\n}\n\n.Layer__bank-transactions__table-cell--header {\n display: flex;\n align-items: center;\n background-color: white;\n font-size: 16px;\n line-height: 20px;\n overflow: clip;\n padding: 1rem;\n font-weight: bold;\n text-align: left;\n}\n\n.Layer__bank-transactions__table-cell--header-amount {\n justify-content: flex-end;\n}\n\n.Layer__bank-transaction-row__table-cell {\n display: flex;\n align-items: center;\n background-color: white;\n font-size: 16px;\n line-height: 20px;\n overflow: clip;\n padding: 1rem;\n}\n\n.Layer__bank-transaction-row__table-cell--expanded {\n background-color: var(--bank-transaction-table-expanded-background-color);\n}\n\n.Layer__bank-transaction-row__table-cell--actions {\n justify-content: flex-end;\n}\n\n.Layer__bank-transaction-row__table-cell--date {\n color: var(--bank-transaction-variable-amount-text-color);\n}\n\n.Layer__bank-transaction-row__table-cell--amount-credit {\n justify-content: flex-end;\n color: var(--bank-transaction-positive-amount-text-color);\n\n &::before {\n content: '+$';\n }\n}\n\n.Layer__bank-transaction-row__table-cell--amount-debit {\n justify-content: flex-end;\n color: var(--bank-transaction-variable-amount-text-color);\n\n &::before {\n content: ' $';\n }\n}\n\n.Layer__bank-transaction-row__save-button {\n cursor: pointer;\n}\n\n.Layer__bank-transaction-row__expand-button {\n margin-left: 0.5rem;\n cursor: pointer;\n}\n\n.Layer__category-menu {\n width: 15rem;\n}\n\n.Layer__expanded-bank-transaction-row {\n grid-column: 1 / -1;\n display: flex;\n flex-direction: column;\n background-color: var(--bank-transaction-table-expanded-background-color);\n}\n\n.Layer__expanded-bank-transaction-row__purpose-button {\n padding: 0 1.5rem;\n align-self: flex-start;\n}\n\n.Layer__expanded-bank-transaction-row__content {\n padding: 0.75rem 1.5rem;\n display: grid;\n grid-template-columns: auto auto auto auto 1fr auto;\n gap: 0;\n}\n\n.Layer__expanded-bank-transaction-row__table-cell {\n padding: 0.25rem 0.75rem;\n font-size: 0.875rem;\n\n &:not(:last-child) {\n margin-right: 0.75rem;\n }\n\n &:nth-child(6n+1) {\n padding-left: 0;\n margin-left: 0;\n }\n\n &:nth-child(6n+6) {\n padding-right: 0;\n margin-right: 0;\n padding-bottom: 0;\n margin-bottom: 0.5rem;\n display: flex;\n flex-direction: column;\n justify-content: flex-end;\n }\n}\n\n.Layer__expanded-bank-transaction-row__table-cell--description textarea {\n resize: none;\n border: 1px solid var(--bank-transaction-buttons-border-color);\n border-radius: 0.5rem;\n}\n\n.Layer__expanded-bank-transaction-row__table-cell--header {\n font-weight: bold;\n text-align: left;\n}\n\n.Layer__expanded-bank-transaction-row__button--split {\n display: flex;\n flex-direction: row;\n align-items: center;\n padding-top: 0.5rem;\n}\n\n.Layer__expanded-bank-transaction-row__button--merge {\n display: flex;\n flex-direction: row;\n align-items: center;\n padding-top: 0.5rem;\n}\n\n.Layer__expanded-bank-transaction-row__button--save {\n border: 1px solid var(--bank-transaction-buttons-border-color);\n border-radius: 0.5rem;\n padding: 0.625rem 1rem;\n background-color: var(--bank-transaction-buttons-selected-background-color);\n font-weight: 600;\n}\n\n.Layer__expanded-bank-transaction-row__svg {\n margin-right: 0.75rem;\n}\n\n.Layer__expanded-bank-transaction-row__table-cell--split-entry {\n display: flex;\n flex-direction: row;\n margin-bottom: 0.5rem;\n\n & input {\n justify-content: stretch;\n margin-left: 0.5rem;\n border: 1px solid var(--bank-transaction-buttons-border-color);\n border-radius: 0.5rem;\n padding: 0.25rem;\n width: 5rem;\n }\n}\n\n.Layer__expanded-bank-transaction-row__split-amount--negative {\n font-weight: bold;\n color: red;\n border: 2.5px dotted red;\n}\n\n.Layer__radio-button-group {\n display: flex;\n font-size: 1rem;\n align-items: center;\n flex: 1;\n justify-content: flex-end;\n padding-top: 0.5rem;\n}\n\n/* BEM does not work for this, since it's tuned for this markup */\n.Layer__radio-button-group__radio-button {\n display: flex;\n flex-direction: row;\n}\n\n.Layer__radio-button-group__radio-button input {\n position: absolute;\n opacity: 0;\n width: 1px;\n}\n\n.Layer__radio-button-group__radio-button div {\n padding: 0.6rem 1rem;\n border: 1px solid var(--bank-transaction-buttons-border-color);\n border-right: 0;\n border-radius: 0;\n font-weight: 600;\n}\n\n.Layer__radio-button-group__radio-button--size-small div {\n padding: 0.25rem 1rem;\n font-size: 0.875rem;\n}\n\n.Layer__radio-button-group__radio-button--size-large div {\n padding: 0.6rem 1rem;\n}\n\n.Layer__radio-button-group__radio-button:first-of-type div {\n border-start-start-radius: 0.6rem;\n border-end-start-radius: 0.6rem;\n}\n\n.Layer__radio-button-group__radio-button:last-of-type div {\n border-right: 1px solid var(--bank-transaction-buttons-border-color);\n border-start-end-radius: 0.6rem;\n border-end-end-radius: 0.6rem;\n}\n\n.Layer__radio-button-group__radio-button input:checked + div {\n background: var(--bank-transaction-buttons-selected-background-color);\n}\n", ".Layer__profit-and-loss {\n --border-color: #eaecf0;\n --font-color: #101828;\n --indicator-bar-color: #3c3c3c;\n --background-color: white;\n --active: #e0e9ff;\n --income-bar-color: #0c48e5;\n --expenses-bar-color: #6d8ee7;\n\n width: 60rem;\n background-color: white;\n padding: 0.25rem;\n\n * {\n color: var(--font-color);\n font-family: Inter;\n font-weight: 500;\n font-style: normal;\n }\n}\n\n.Layer__profit-and-loss__title {\n font-size: 1.5rem;\n font-weight: 600;\n margin-bottom: 1.5rem;\n margin-left: 1.5rem;\n margin-right: 1.5rem;\n}\n\n.Layer__profit-and-loss-table {\n border: 1px solid var(--border-color);\n border-radius: 0.5rem;\n background-color: var(--border-color);\n display: grid;\n grid-template-columns: 1fr auto;\n gap: 1px 0;\n font-size: 1rem;\n}\n\n.Layer__profit-and-loss-row {\n padding: 1em;\n background-color: var(--background-color);\n font-size: 1em;\n}\n\n.Layer__profit-and-loss-row__label {\n display: flex;\n justify-content: flex-start;\n}\n\n.Layer__profit-and-loss-row__value {\n display: flex;\n justify-content: flex-end;\n}\n\n.Layer__profit-and-loss-row__label--variant-NETPROFIT,\n.Layer__profit-and-loss-row__label--variant-GROSS,\n.Layer__profit-and-loss-row__label--variant-BEFORETAX {\n border-top: 3px solid var(--border-color);\n border-bottom: 3px solid var(--border-color);\n}\n\n.Layer__profit-and-loss-row__value--variant-NETPROFIT,\n.Layer__profit-and-loss-row__value--variant-GROSS,\n.Layer__profit-and-loss-row__value--variant-BEFORETAX {\n border-top: 3px solid var(--border-color);\n border-bottom: 3px solid var(--border-color);\n}\n\n.Layer__profit-and-loss-row__label--variant-NETPROFIT,\n.Layer__profit-and-loss-row__value--variant-NETPROFIT {\n border-bottom: 10px solid var(--border-color);\n}\n\n.Layer__profit-and-loss-row__value--amount-positive {\n &::before {\n content: '$';\n }\n}\n\n.Layer__profit-and-loss-row__value--amount-negative {\n &::before {\n content: '-$';\n }\n}\n\n.Layer__profit-and-loss-row__label--depth-0 {\n font-weight: 700;\n}\n\n.Layer__profit-and-loss-row__value--depth-0 {\n font-weight: 700;\n}\n\n.Layer__profit-and-loss-row__label--depth-1 {\n padding-right: 2em;\n padding-left: 2em;\n font-size: 0.8em;\n}\n\n.Layer__profit-and-loss-row__value--depth-1 {\n font-size: 0.8em;\n}\n\n.Layer__profit-and-loss-date-picker {\n width: 20rem;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n padding: 0.25rem;\n margin: 0.5rem;\n border: 1px solid var(--border-color);\n border-radius: 0.5rem;\n}\n\n.Layer__profit-and-loss-date-picker__button {\n padding: 0.25rem;\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background-color: var(--background-color);\n border: 0;\n border-radius: 0.5rem;\n\n &:active {\n background-color: var(--active);\n }\n}\n\n.Layer__profit-and-loss-date-picker__button-icon path {\n stroke: var(--font-color);\n}\n\n.Layer__profit-and-loss-date-picker__label {\n flex: 1;\n font-size: 1rem;\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n}\n\n.Layer__profit-and-loss-chart__bar--income {\n fill: var(--income-bar-color);\n}\n\n.Layer__profit-and-loss-chart__bar--expenses {\n fill: var(--expenses-bar-color);\n}\n\n.Layer__profit-and-loss-chart .recharts-cartesian-axis-tick-value tspan {\n font-size: 0.75rem;\n}\n\n.Layer__profit-and-loss-chart .recharts-legend-wrapper {\n margin-top: -1.25rem;\n}\n\n.Layer__profit-and-loss-chart .recharts-legend-item-text {\n font-size: 1rem;\n}\n\n.Layer__profit-and-loss-chart .legend-item-0 {\n fill: var(--income-bar-color);\n}\n\n.Layer__profit-and-loss-chart .legend-item-1 {\n fill: var(--expenses-bar-color);\n}\n\n.Layer__profit-and-loss-chart__selection-indicator {\n height: 0.25rem;\n fill: var(--indicator-bar-color);\n transition: x 0.5s;\n}\n\n.Layer__profit-and-loss-summaries {\n display: flex;\n flex: 1;\n flex-direction: row;\n justify-content: space-evenly;\n}\n\n.Layer__profit-and-loss-summaries__summary {\n display: flex;\n flex: 1;\n flex-direction: column;\n border: 1px solid var(--border-color);\n border-radius: 0.5rem;\n padding: 1.5rem;\n margin-right: 1.5rem;\n\n &:first-child {\n margin-left: 1.5rem;\n }\n}\n\n.Layer__profit-and-loss-summaries__title {\n font-weight: 600;\n font-size: 1.375rem;\n margin-bottom: 0.75rem;\n}\n\n.Layer__profit-and-loss-summaries__month {\n font-size: 1.125rem;\n margin-bottom: 0.25rem;\n}\n\n.Layer__profit-and-loss-summaries__amount {\n font-weight: 600;\n font-size: 1.5rem;\n\n &::before {\n content: '$';\n }\n}\n", ".Layer__balance-sheet {\n --border-color: #eaecf0;\n --font-color: #101828;\n --indicator-bar-color: #3c3c3c;\n --background-color: white;\n --active: #e0e9ff;\n --income-bar-color: #0c48e5;\n --expenses-bar-color: #6d8ee7;\n\n width: 60rem;\n background-color: white;\n padding: 0.25rem;\n\n * {\n color: var(--font-color);\n stroke: var(--font-color);\n font-family: Inter;\n font-weight: 500;\n font-style: normal;\n }\n}\n\n.Layer__balance-sheet__table {\n border: 1px solid var(--border-color);\n border-radius: 0.5rem;\n background-color: var(--border-color);\n display: grid;\n grid-template-columns: 1fr auto;\n gap: 1px 0;\n font-size: 1rem;\n}\n\n.Layer__balance-sheet__header {\n display: flex;\n flex: 1;\n flex-direction: row;\n}\n\n.Layer__balance-sheet__title {\n display: inline;\n flex: 1;\n font-size: 1.5rem;\n font-weight: 600;\n margin-bottom: 1.5rem;\n margin-left: 1.5rem;\n margin-right: 1.5rem;\n}\n\n.Layer__balance-sheet__date {\n font-size: 0.75em;\n &::before {\n content: ' - as of ';\n }\n}\n\n.Layer__balance-sheet__download-button {\n align-self: center;\n border: 2px solid var(--border-color);\n background-color: var(--background-color);\n padding: 0.5rem;\n border-radius: 0.5rem;\n margin-left: 0.5rem;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n\n &:active {\n background-color: var(--active);\n }\n\n & svg {\n margin-right: 0.5rem;\n }\n}\n\n.Layer__balance-sheet-row {\n display: grid;\n grid-template-columns: subgrid;\n}\n\n.Layer__balance-sheet-date-picker {\n align-items: center;\n justify-content: center;\n display: flex;\n\n & button {\n position: relative;\n border: 2px solid var(--border-color);\n background-color: var(--background-color);\n padding: 0.5rem;\n border-radius: 0.5rem;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n\n &:active {\n background-color: var(--active);\n }\n\n & svg {\n margin-right: 0.5rem;\n }\n\n & input {\n position: absolute;\n z-index: -1;\n bottom: 0;\n left: 0;\n width: 1px;\n height: 100%;\n }\n }\n}\n\n.Layer__balance-sheet-row {\n padding: 1em;\n background-color: var(--background-color);\n font-size: 1em;\n}\n\n.Layer__balance-sheet-row__label {\n display: flex;\n justify-content: flex-start;\n align-items: center;\n svg {\n stroke: var(--font-color);\n width: 1.25rem;\n height: 1.25rem;\n margin-right: 0.25rem;\n }\n}\n\n.Layer__balance-sheet-row__value {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n svg {\n stroke: var(--font-color);\n width: 1.25rem;\n height: 1.25rem;\n margin-right: 0.25rem;\n }\n}\n\n.Layer__balance-sheet-row__value--amount-positive {\n &::before {\n content: '$';\n }\n}\n\n.Layer__balance-sheet-row__value--amount-negative {\n &::before {\n content: '-$';\n }\n}\n\n.Layer__balance-sheet-row__label--depth-0 {\n font-weight: 700;\n}\n\n.Layer__balance-sheet-row__value--depth-0 {\n font-weight: 700;\n}\n\n.Layer__balance-sheet-row__label--depth-1 {\n padding-right: 2em;\n padding-left: 2em;\n font-size: 0.8em;\n}\n\n.Layer__balance-sheet-row__value--depth-1 {\n font-size: 0.8em;\n}\n\n.Layer__balance-sheet-row__label--depth-2 {\n padding-right: 2em;\n padding-left: 4em;\n font-size: 0.8em;\n}\n\n.Layer__balance-sheet-row__value--depth-2 {\n font-size: 0.8em;\n}\n\n.Layer__balance-sheet-row__label--display-children-true {\n font-weight: bold;\n}\n\n.Layer__balance-sheet-row__value--display-children-true {\n font-weight: bold;\n}\n\n.Layer__balance-sheet-row__label--display-children-false {\n font-weight: normal;\n svg {\n display: none;\n }\n}\n\n.Layer__balance-sheet-row__label--display-children-false {\n font-weight: normal;\n svg {\n display: none;\n }\n}\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|