@layerfi/components 0.1.75 → 0.1.77
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/.eslintrc.js +21 -12
- package/README.md +5 -17
- package/dist/esm/index.js +922 -778
- package/dist/esm/index.js.map +4 -4
- package/dist/index.d.ts +206 -97
- package/dist/index.js +1013 -869
- package/dist/index.js.map +4 -4
- package/dist/styles/index.css +147 -179
- package/dist/styles/index.css.map +3 -3
- package/package.json +5 -7
- package/.idea/codeStyles/Project.xml +0 -61
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/.idea/layer-react.iml +0 -9
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
- package/.prettierrc.json +0 -21
package/dist/styles/index.css
CHANGED
|
@@ -2502,40 +2502,6 @@
|
|
|
2502
2502
|
max-width: 90%;
|
|
2503
2503
|
width: 640px;
|
|
2504
2504
|
}
|
|
2505
|
-
.Layer__notification-card {
|
|
2506
|
-
box-sizing: border-box;
|
|
2507
|
-
box-shadow: 0px 0px 0px 1px var(--color-base-300);
|
|
2508
|
-
border-radius: var(--border-radius-xs);
|
|
2509
|
-
padding: var(--spacing-2xs) var(--spacing-xs);
|
|
2510
|
-
min-height: 52px;
|
|
2511
|
-
background-color: var(--color-base-0);
|
|
2512
|
-
display: flex;
|
|
2513
|
-
align-items: center;
|
|
2514
|
-
justify-content: space-between;
|
|
2515
|
-
}
|
|
2516
|
-
.Layer__notification-card .Layer__skeleton-loader {
|
|
2517
|
-
margin-top: 3px;
|
|
2518
|
-
margin-bottom: 2px;
|
|
2519
|
-
}
|
|
2520
|
-
.Layer__notification-card__main {
|
|
2521
|
-
display: flex;
|
|
2522
|
-
flex-direction: column;
|
|
2523
|
-
gap: var(--spacing-3xs);
|
|
2524
|
-
align-items: flex-start;
|
|
2525
|
-
}
|
|
2526
|
-
.Layer__notification-card__main > .Layer__text {
|
|
2527
|
-
color: var(--color-base-700);
|
|
2528
|
-
}
|
|
2529
|
-
.Layer__txs-to-review .Layer__badge--error {
|
|
2530
|
-
color: var(--color-info-error-fg);
|
|
2531
|
-
background-color: var(--color-base-50);
|
|
2532
|
-
font-variation-settings: "wght" var(--font-weight-bold);
|
|
2533
|
-
}
|
|
2534
|
-
.Layer__txs-to-review .Layer__badge--success {
|
|
2535
|
-
color: var(--color-info-success-fg);
|
|
2536
|
-
background-color: var(--color-base-50);
|
|
2537
|
-
font-variation-settings: "wght" var(--font-weight-bold);
|
|
2538
|
-
}
|
|
2539
2505
|
.Layer__table {
|
|
2540
2506
|
width: 100%;
|
|
2541
2507
|
border-spacing: 0;
|
|
@@ -3334,6 +3300,43 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
3334
3300
|
.Layer__view.Layer__view--panel .Layer__view-header__content {
|
|
3335
3301
|
max-width: 1406px;
|
|
3336
3302
|
}
|
|
3303
|
+
.Layer__VStack {
|
|
3304
|
+
display: flex;
|
|
3305
|
+
flex-direction: column;
|
|
3306
|
+
}
|
|
3307
|
+
.Layer__VStack[data-align=start] {
|
|
3308
|
+
align-items: start;
|
|
3309
|
+
}
|
|
3310
|
+
.Layer__VStack[data-gap="3xs"] {
|
|
3311
|
+
gap: var(--spacing-3xs);
|
|
3312
|
+
}
|
|
3313
|
+
.Layer__VStack[data-gap="2xs"] {
|
|
3314
|
+
gap: var(--spacing-2xs);
|
|
3315
|
+
}
|
|
3316
|
+
.Layer__VStack[data-gap=xs] {
|
|
3317
|
+
gap: var(--spacing-xs);
|
|
3318
|
+
}
|
|
3319
|
+
.Layer__VStack[data-gap=sm] {
|
|
3320
|
+
gap: var(--spacing-sm);
|
|
3321
|
+
}
|
|
3322
|
+
.Layer__VStack[data-gap=md] {
|
|
3323
|
+
gap: var(--spacing-md);
|
|
3324
|
+
}
|
|
3325
|
+
.Layer__VStack[data-gap=lg] {
|
|
3326
|
+
gap: var(--spacing-lg);
|
|
3327
|
+
}
|
|
3328
|
+
.Layer__VStack[data-gap=xl] {
|
|
3329
|
+
gap: var(--spacing-xl);
|
|
3330
|
+
}
|
|
3331
|
+
.Layer__VStack[data-gap="2xl"] {
|
|
3332
|
+
gap: var(--spacing-2xl);
|
|
3333
|
+
}
|
|
3334
|
+
.Layer__VStack[data-gap="3xl"] {
|
|
3335
|
+
gap: var(--spacing-3xl);
|
|
3336
|
+
}
|
|
3337
|
+
.Layer__VStack[data-gap="5xl"] {
|
|
3338
|
+
gap: var(--spacing-5xl);
|
|
3339
|
+
}
|
|
3337
3340
|
.Layer__ledger-account__index {
|
|
3338
3341
|
background-color: var(--color-base-0);
|
|
3339
3342
|
width: 100%;
|
|
@@ -4117,24 +4120,41 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4117
4120
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__amount-col {
|
|
4118
4121
|
position: -webkit-sticky;
|
|
4119
4122
|
position: sticky;
|
|
4120
|
-
right: 494px;
|
|
4121
4123
|
width: 150px;
|
|
4122
|
-
min-width:
|
|
4124
|
+
min-width: 50px;
|
|
4123
4125
|
box-sizing: border-box;
|
|
4124
4126
|
z-index: 2;
|
|
4125
4127
|
text-align: right;
|
|
4126
4128
|
box-shadow: -8px 0px 20px -2px rgba(255, 255, 255, 0.64);
|
|
4129
|
+
right: 430px;
|
|
4130
|
+
}
|
|
4131
|
+
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__amount-col[data-showreceiptuploadcolumn] {
|
|
4132
|
+
right: 494px;
|
|
4133
|
+
}
|
|
4134
|
+
.Layer__table-header.Layer__bank-transactions__documents-col {
|
|
4135
|
+
padding-left: 0px;
|
|
4136
|
+
padding-right: 0px;
|
|
4137
|
+
}
|
|
4138
|
+
.Layer__table-header.Layer__bank-transactions__documents-col[data-showreceiptuploadcolumn] {
|
|
4139
|
+
padding-left: 16px;
|
|
4140
|
+
padding-right: 16px;
|
|
4127
4141
|
}
|
|
4128
4142
|
.Layer__table.Layer__bank-transactions__table .Layer__bank-transactions__documents-col {
|
|
4129
4143
|
position: -webkit-sticky;
|
|
4130
4144
|
position: sticky;
|
|
4131
4145
|
right: 430px;
|
|
4132
|
-
width: 64px;
|
|
4133
|
-
min-width: 64px;
|
|
4134
4146
|
box-sizing: border-box;
|
|
4135
4147
|
z-index: 2;
|
|
4136
4148
|
text-align: center;
|
|
4137
4149
|
box-shadow: -8px 0px 20px -2px rgba(255, 255, 255, 0.64);
|
|
4150
|
+
width: 0px;
|
|
4151
|
+
min-width: 0px;
|
|
4152
|
+
max-width: 0px;
|
|
4153
|
+
}
|
|
4154
|
+
.Layer__table.Layer__bank-transactions__table .Layer__bank-transactions__documents-col[data-showreceiptuploadcolumn] {
|
|
4155
|
+
width: 64px;
|
|
4156
|
+
min-width: 64px;
|
|
4157
|
+
max-width: 64px;
|
|
4138
4158
|
}
|
|
4139
4159
|
.Layer__table.Layer__bank-transactions__table .Layer__table-cell__category-col {
|
|
4140
4160
|
position: -webkit-sticky;
|
|
@@ -6663,6 +6683,88 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6663
6683
|
background-color: var(--color-info-error-bg);
|
|
6664
6684
|
color: var(--color-info-error-fg);
|
|
6665
6685
|
}
|
|
6686
|
+
.Layer__ProfitAndLossSummariesListItem {
|
|
6687
|
+
all: unset;
|
|
6688
|
+
display: grid;
|
|
6689
|
+
background: var(--color-base-0);
|
|
6690
|
+
border-radius: var(--border-radius-xs);
|
|
6691
|
+
box-shadow: 0px 0px 0px 1px var(--color-base-300);
|
|
6692
|
+
padding: var(--spacing-4xs);
|
|
6693
|
+
}
|
|
6694
|
+
.Layer__ProfitAndLossSummariesListItem[data-active] {
|
|
6695
|
+
box-shadow: 0px 0px 0px 1px var(--color-base-200);
|
|
6696
|
+
background: var(--color-base-50);
|
|
6697
|
+
}
|
|
6698
|
+
.Layer__ProfitAndLossSummariesListItem[data-clickable] {
|
|
6699
|
+
cursor: pointer;
|
|
6700
|
+
}
|
|
6701
|
+
.Layer__ProfitAndLossSummariesListItem[data-clickable]:hover {
|
|
6702
|
+
background: var(--color-base-50);
|
|
6703
|
+
}
|
|
6704
|
+
.Layer__ProfitAndLossSummariesList {
|
|
6705
|
+
all: unset;
|
|
6706
|
+
display: grid;
|
|
6707
|
+
gap: var(--spacing-sm);
|
|
6708
|
+
grid-auto-rows: minmax(0, 1fr);
|
|
6709
|
+
}
|
|
6710
|
+
@container (min-width: 48rem) {
|
|
6711
|
+
.Layer__ProfitAndLossSummariesList {
|
|
6712
|
+
--column-count: 3;
|
|
6713
|
+
gap: var(--spacing-md);
|
|
6714
|
+
grid-template-columns: repeat(var(--column-count), minmax(0, 1fr));
|
|
6715
|
+
}
|
|
6716
|
+
.Layer__ProfitAndLossSummariesList[data-column-count="4"] {
|
|
6717
|
+
--column-count: 4;
|
|
6718
|
+
}
|
|
6719
|
+
}
|
|
6720
|
+
.Layer__ProfitAndLossSummariesSummary {
|
|
6721
|
+
display: grid;
|
|
6722
|
+
min-block-size: 3rem;
|
|
6723
|
+
grid-template-columns: auto minmax(0, 1fr);
|
|
6724
|
+
column-gap: var(--spacing-xs);
|
|
6725
|
+
row-gap: var(--spacing-3xs);
|
|
6726
|
+
grid-template-areas: "chart heading" "chart amount";
|
|
6727
|
+
}
|
|
6728
|
+
.Layer__ProfitAndLossSummariesSummary[data-size=lg] {
|
|
6729
|
+
min-block-size: 6rem;
|
|
6730
|
+
column-gap: var(--spacing-md);
|
|
6731
|
+
}
|
|
6732
|
+
.Layer__ProfitAndLossSummariesSummaryChartArea {
|
|
6733
|
+
grid-area: chart;
|
|
6734
|
+
align-content: center;
|
|
6735
|
+
border-radius: var(--border-radius-xs);
|
|
6736
|
+
background: var(--color-base-50);
|
|
6737
|
+
}
|
|
6738
|
+
.Layer__ProfitAndLossSummariesSummaryAmount {
|
|
6739
|
+
grid-area: amount;
|
|
6740
|
+
font-size: var(--text-lg);
|
|
6741
|
+
font-variation-settings: "wght" var(--font-weight-bold);
|
|
6742
|
+
overflow-x: hidden;
|
|
6743
|
+
text-overflow: ellipsis;
|
|
6744
|
+
}
|
|
6745
|
+
.Layer__ProfitAndLossSummariesSummaryAmount[data-size=lg] {
|
|
6746
|
+
font-size: var(--text-heading);
|
|
6747
|
+
}
|
|
6748
|
+
.Layer__ProfitAndLossSummariesSummaryAmount[data-positive]::before {
|
|
6749
|
+
content: "$";
|
|
6750
|
+
}
|
|
6751
|
+
.Layer__ProfitAndLossSummariesSummaryAmount[data-negative]::before {
|
|
6752
|
+
content: "-$";
|
|
6753
|
+
}
|
|
6754
|
+
.Layer__ProfitAndLossSummariesSummaryHeading {
|
|
6755
|
+
grid-area: heading;
|
|
6756
|
+
align-self: end;
|
|
6757
|
+
margin: unset;
|
|
6758
|
+
color: var(--color-base-700);
|
|
6759
|
+
font-size: var(--text-sm);
|
|
6760
|
+
}
|
|
6761
|
+
.Layer__ProfitAndLossSummariesSummaryHeading[data-size=lg] {
|
|
6762
|
+
font-size: var(--text-lg);
|
|
6763
|
+
}
|
|
6764
|
+
.Layer__ProfitAndLossSummaries {
|
|
6765
|
+
display: grid;
|
|
6766
|
+
container-type: inline-size;
|
|
6767
|
+
}
|
|
6666
6768
|
.Layer__component-container .Layer__profit-and-loss {
|
|
6667
6769
|
display: flex;
|
|
6668
6770
|
align-items: stretch;
|
|
@@ -6893,88 +6995,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6893
6995
|
flex: 1;
|
|
6894
6996
|
padding: var(--spacing-md);
|
|
6895
6997
|
}
|
|
6896
|
-
.Layer__profit-and-loss-summaries {
|
|
6897
|
-
display: flex;
|
|
6898
|
-
flex: 1;
|
|
6899
|
-
flex-direction: row;
|
|
6900
|
-
justify-content: space-evenly;
|
|
6901
|
-
column-gap: var(--spacing-md);
|
|
6902
|
-
row-gap: var(--spacing-md);
|
|
6903
|
-
max-width: 1406px;
|
|
6904
|
-
}
|
|
6905
|
-
.Layer__profit-and-loss-summaries.flex-col {
|
|
6906
|
-
flex-direction: column;
|
|
6907
|
-
}
|
|
6908
|
-
.Layer__profit-and-loss-summaries__summary {
|
|
6909
|
-
display: flex;
|
|
6910
|
-
flex: 1;
|
|
6911
|
-
gap: var(--spacing-xs);
|
|
6912
|
-
align-items: center;
|
|
6913
|
-
box-shadow: 0px 0px 0px 1px var(--color-base-300);
|
|
6914
|
-
border-radius: var(--border-radius-xs);
|
|
6915
|
-
padding: var(--spacing-4xs);
|
|
6916
|
-
min-height: 52px;
|
|
6917
|
-
box-sizing: border-box;
|
|
6918
|
-
background-color: var(--color-base-0);
|
|
6919
|
-
}
|
|
6920
|
-
.Layer__profit-and-loss-summaries__summary.Layer__actionable {
|
|
6921
|
-
cursor: pointer;
|
|
6922
|
-
}
|
|
6923
|
-
.Layer__profit-and-loss-summaries__summary.Layer__actionable:hover {
|
|
6924
|
-
background: var(--color-base-50);
|
|
6925
|
-
}
|
|
6926
|
-
.Layer__profit-and-loss-summaries__summary.active {
|
|
6927
|
-
box-shadow: 0px 0px 0px 1px var(--color-base-200);
|
|
6928
|
-
background: var(--color-base-50);
|
|
6929
|
-
}
|
|
6930
|
-
.Layer__profit-and-loss-summaries__summary .mini-chart {
|
|
6931
|
-
background: var(--color-base-50);
|
|
6932
|
-
border-radius: 6px;
|
|
6933
|
-
border-width: 0;
|
|
6934
|
-
box-shadow: none;
|
|
6935
|
-
}
|
|
6936
|
-
.Layer__profit-and-loss-summaries__summary.net-profit {
|
|
6937
|
-
padding-left: var(--spacing-xs);
|
|
6938
|
-
min-height: 56px;
|
|
6939
|
-
}
|
|
6940
|
-
.Layer__profit-and-loss-summaries__summary.Layer__actionable.net-profit {
|
|
6941
|
-
background: var(--color-base-50);
|
|
6942
|
-
border-color: transparent;
|
|
6943
|
-
box-shadow: none;
|
|
6944
|
-
}
|
|
6945
|
-
.Layer__profit-and-loss-summaries__loader {
|
|
6946
|
-
height: 17px;
|
|
6947
|
-
display: flex;
|
|
6948
|
-
align-items: center;
|
|
6949
|
-
}
|
|
6950
|
-
.Layer__profit-and-loss-summaries__loader .Layer__skeleton-loader {
|
|
6951
|
-
height: 14px;
|
|
6952
|
-
}
|
|
6953
|
-
.Layer__profit-and-loss-summaries__text {
|
|
6954
|
-
display: flex;
|
|
6955
|
-
flex-direction: column;
|
|
6956
|
-
gap: var(--spacing-4xs);
|
|
6957
|
-
}
|
|
6958
|
-
.Layer__profit-and-loss-summaries__title {
|
|
6959
|
-
color: var(--color-base-700);
|
|
6960
|
-
font-size: var(--text-sm);
|
|
6961
|
-
}
|
|
6962
|
-
.Layer__profit-and-loss-summaries__month {
|
|
6963
|
-
font-size: 1.125rem;
|
|
6964
|
-
margin-bottom: 0.25rem;
|
|
6965
|
-
}
|
|
6966
|
-
.Layer__profit-and-loss-summaries__amount,
|
|
6967
|
-
.Layer__profit-and-loss-summaries__amount--positive {
|
|
6968
|
-
color: var(--text-color-primary);
|
|
6969
|
-
font-size: var(--text-md);
|
|
6970
|
-
}
|
|
6971
|
-
.Layer__profit-and-loss-summaries__amount::before,
|
|
6972
|
-
.Layer__profit-and-loss-summaries__amount--positive::before {
|
|
6973
|
-
content: "$";
|
|
6974
|
-
}
|
|
6975
|
-
.Layer__profit-and-loss-summaries__amount--negative::before {
|
|
6976
|
-
content: "-$";
|
|
6977
|
-
}
|
|
6978
6998
|
.Layer__profit-and-loss-row__children--content {
|
|
6979
6999
|
min-height: 0;
|
|
6980
7000
|
display: grid;
|
|
@@ -7074,10 +7094,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7074
7094
|
}
|
|
7075
7095
|
}
|
|
7076
7096
|
@container (max-width: 1023px) and (min-width: 760px) {
|
|
7077
|
-
.Layer__profit-and-loss-summaries,
|
|
7078
|
-
.Layer__profit-and-loss-summaries.flex-col {
|
|
7079
|
-
flex-direction: row;
|
|
7080
|
-
}
|
|
7081
7097
|
.Layer__profit-and-loss__chart_with_summaries {
|
|
7082
7098
|
flex-direction: column;
|
|
7083
7099
|
margin-left: var(--spacing-md);
|
|
@@ -7086,10 +7102,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7086
7102
|
}
|
|
7087
7103
|
}
|
|
7088
7104
|
@container (max-width: 759px) and (min-width: 500px) {
|
|
7089
|
-
.Layer__profit-and-loss-summaries,
|
|
7090
|
-
.Layer__profit-and-loss-summaries.flex-col {
|
|
7091
|
-
flex-direction: column;
|
|
7092
|
-
}
|
|
7093
7105
|
.Layer__profit-and-loss__chart_with_summaries {
|
|
7094
7106
|
flex-direction: column;
|
|
7095
7107
|
margin-left: 0;
|
|
@@ -7099,15 +7111,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7099
7111
|
}
|
|
7100
7112
|
}
|
|
7101
7113
|
@container (max-width: 500px) {
|
|
7102
|
-
.Layer__profit-and-loss-summaries,
|
|
7103
|
-
.Layer__profit-and-loss-summaries.flex-col {
|
|
7104
|
-
flex-direction: row;
|
|
7105
|
-
max-width: 100%;
|
|
7106
|
-
overflow: auto;
|
|
7107
|
-
box-sizing: border-box;
|
|
7108
|
-
justify-content: flex-start;
|
|
7109
|
-
padding: 6px 1px;
|
|
7110
|
-
}
|
|
7111
7114
|
.Layer__profit-and-loss__chart_with_summaries {
|
|
7112
7115
|
flex-direction: column;
|
|
7113
7116
|
margin-left: 0;
|
|
@@ -7115,9 +7118,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7115
7118
|
margin-bottom: var(--spacing-md);
|
|
7116
7119
|
box-shadow: none;
|
|
7117
7120
|
}
|
|
7118
|
-
.Layer__profit-and-loss-summaries__summary {
|
|
7119
|
-
min-width: 150px;
|
|
7120
|
-
}
|
|
7121
7121
|
}
|
|
7122
7122
|
.Layer__profit-and-loss-row__detailed-chart-btn {
|
|
7123
7123
|
width: 20px;
|
|
@@ -7623,16 +7623,12 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
7623
7623
|
transform: translateX(50%);
|
|
7624
7624
|
}
|
|
7625
7625
|
}
|
|
7626
|
-
.
|
|
7626
|
+
.Layer__TransactionsToReview {
|
|
7627
7627
|
display: flex;
|
|
7628
7628
|
align-items: center;
|
|
7629
|
-
|
|
7630
|
-
|
|
7631
|
-
|
|
7632
|
-
}
|
|
7633
|
-
.Layer__accounting-overview__summaries-row .Layer__notification-card {
|
|
7634
|
-
width: calc(25% - 12px);
|
|
7635
|
-
height: 56px;
|
|
7629
|
+
justify-content: space-between;
|
|
7630
|
+
gap: var(--spacing-xs);
|
|
7631
|
+
padding: var(--spacing-2xs) var(--spacing-xs);
|
|
7636
7632
|
}
|
|
7637
7633
|
.Layer__accounting-overview-profit-and-loss-charts {
|
|
7638
7634
|
display: flex;
|
|
@@ -7651,16 +7647,6 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
7651
7647
|
}
|
|
7652
7648
|
}
|
|
7653
7649
|
@container (max-width: 796px) {
|
|
7654
|
-
.Layer__accounting-overview__summaries-row {
|
|
7655
|
-
flex-direction: column;
|
|
7656
|
-
}
|
|
7657
|
-
.Layer__accounting-overview__summaries-row .Layer__profit-and-loss-summaries {
|
|
7658
|
-
width: 100%;
|
|
7659
|
-
flex-direction: column;
|
|
7660
|
-
}
|
|
7661
|
-
.Layer__accounting-overview__summaries-row .Layer__notification-card.Layer__txs-to-review {
|
|
7662
|
-
width: 100%;
|
|
7663
|
-
}
|
|
7664
7650
|
.Layer__accounting-overview-profit-and-loss-charts {
|
|
7665
7651
|
flex-direction: column;
|
|
7666
7652
|
}
|
|
@@ -7680,6 +7666,9 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
7680
7666
|
margin-top: -12px;
|
|
7681
7667
|
}
|
|
7682
7668
|
}
|
|
7669
|
+
.Layer__BookkeepingProfitAndLossSummariesContainer {
|
|
7670
|
+
padding: var(--spacing-md);
|
|
7671
|
+
}
|
|
7683
7672
|
.Layer__bookkeeping-overview--view .Layer__panel .Layer__panel__content .Layer__component-header {
|
|
7684
7673
|
z-index: 1;
|
|
7685
7674
|
}
|
|
@@ -7699,17 +7688,6 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
7699
7688
|
padding-right: 0;
|
|
7700
7689
|
}
|
|
7701
7690
|
}
|
|
7702
|
-
.Layer__bookkeeping-overview__summaries-row {
|
|
7703
|
-
display: flex;
|
|
7704
|
-
align-items: center;
|
|
7705
|
-
gap: var(--spacing-md);
|
|
7706
|
-
max-width: 1406px;
|
|
7707
|
-
padding: var(--spacing-md);
|
|
7708
|
-
}
|
|
7709
|
-
.Layer__bookkeeping-overview__summaries-row .Layer__notification-card {
|
|
7710
|
-
width: calc(25% - 12px);
|
|
7711
|
-
height: 56px;
|
|
7712
|
-
}
|
|
7713
7691
|
.Layer__bookkeeping-overview-profit-and-loss-chart {
|
|
7714
7692
|
width: calc(50% - var(--spacing-md) / 2);
|
|
7715
7693
|
}
|
|
@@ -7725,16 +7703,6 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
7725
7703
|
top: 16px !important;
|
|
7726
7704
|
}
|
|
7727
7705
|
@container (max-width: 796px) {
|
|
7728
|
-
.Layer__bookkeeping-overview__summaries-row {
|
|
7729
|
-
flex-direction: column;
|
|
7730
|
-
}
|
|
7731
|
-
.Layer__bookkeeping-overview__summaries-row .Layer__profit-and-loss-summaries {
|
|
7732
|
-
width: 100%;
|
|
7733
|
-
flex-direction: column;
|
|
7734
|
-
}
|
|
7735
|
-
.Layer__bookkeeping-overview__summaries-row .Layer__notification-card.Layer__txs-to-review {
|
|
7736
|
-
width: 100%;
|
|
7737
|
-
}
|
|
7738
7706
|
.Layer__bookkeeping-overview-profit-and-loss-chart {
|
|
7739
7707
|
width: 100%;
|
|
7740
7708
|
}
|