@layerfi/components 0.1.109 → 0.1.111

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/index.css CHANGED
@@ -961,7 +961,7 @@
961
961
  gap: var(--spacing-md);
962
962
  align-items: center;
963
963
  justify-content: space-between;
964
- padding: var(--spacing-md);
964
+ padding: var(--spacing-lg);
965
965
  }
966
966
  .Layer__component-header.Layer__component-header--next-line-actions {
967
967
  flex-direction: column;
@@ -985,18 +985,6 @@
985
985
  align-items: center;
986
986
  justify-content: space-between;
987
987
  }
988
- @container (max-width: 760px) {
989
- .Layer__component-header {
990
- padding: var(--spacing-md);
991
- }
992
- }
993
- @container (min-width: 1023px) {
994
- .Layer__component-header {
995
- padding-top: var(--spacing-xl);
996
- padding-right: var(--spacing-xl);
997
- padding-left: var(--spacing-xl);
998
- }
999
- }
1000
988
  .Layer__error-boundary {
1001
989
  padding: var(--spacing-xl);
1002
990
  }
@@ -3688,13 +3676,13 @@
3688
3676
  .Layer__Portal .Layer__textarea,
3689
3677
  .Layer__Portal .Layer__select__control,
3690
3678
  .Layer__Portal .Layer__input {
3691
- min-height: 36px;
3679
+ height: 36px;
3692
3680
  font-size: 16px;
3693
3681
  }
3694
3682
  .Layer__view .Layer__bank-transaction-list-item__expanded-row .Layer__select .Layer__select__control,
3695
3683
  .Layer__component .Layer__bank-transaction-list-item__expanded-row .Layer__select .Layer__select__control,
3696
3684
  .Layer__Portal .Layer__bank-transaction-list-item__expanded-row .Layer__select .Layer__select__control {
3697
- min-height: 36px;
3685
+ height: 36px;
3698
3686
  }
3699
3687
  }
3700
3688
  .Layer__form .Layer__form-section {
@@ -4619,7 +4607,7 @@ tbody .Layer__table__empty-row:first-child {
4619
4607
  display: flex;
4620
4608
  align-items: center;
4621
4609
  justify-content: center;
4622
- --size: 1.75rem;
4610
+ --size: 1.25rem;
4623
4611
  block-size: var(--size);
4624
4612
  inline-size: var(--size);
4625
4613
  cursor: pointer;
@@ -4628,7 +4616,7 @@ tbody .Layer__table__empty-row:first-child {
4628
4616
  display: flex;
4629
4617
  align-items: center;
4630
4618
  justify-content: center;
4631
- --size: 1.75rem;
4619
+ --size: 1.25rem;
4632
4620
  block-size: var(--size);
4633
4621
  inline-size: var(--size);
4634
4622
  cursor: default;
@@ -4641,7 +4629,7 @@ tbody .Layer__table__empty-row:first-child {
4641
4629
  inline-size: var(--size);
4642
4630
  cursor: pointer;
4643
4631
  color: var(--color-base-600);
4644
- --size: 1.75rem;
4632
+ --size: 1.25rem;
4645
4633
  }
4646
4634
  .Layer__ComboBoxMenu {
4647
4635
  overflow: hidden;
@@ -6104,22 +6092,10 @@ tbody .Layer__table__empty-row:first-child {
6104
6092
  gap: var(--spacing-xs);
6105
6093
  align-items: center;
6106
6094
  }
6107
- @container (min-width: 640px) {
6108
- .Layer__TransactionsActions {
6109
- grid-template-areas: "toggle . search download-upload";
6110
- grid-template-columns: auto minmax(0, 2fr) minmax(15rem, 3fr) auto;
6111
- }
6112
- }
6113
- @container (min-width: 780px) {
6114
- .Layer__TransactionsActions {
6115
- grid-template-areas: "toggle . search download-upload";
6116
- grid-template-columns: auto minmax(0, 3fr) minmax(15rem, 2fr) auto;
6117
- }
6118
- }
6119
- @container (min-width: 1024px) {
6095
+ @container (min-width: 768px) {
6120
6096
  .Layer__TransactionsActions {
6121
6097
  grid-template-areas: "toggle . search download-upload";
6122
- grid-template-columns: auto minmax(0, 3fr) minmax(15rem, 1fr) auto;
6098
+ grid-template-columns: auto minmax(0, 2fr) 15rem auto;
6123
6099
  }
6124
6100
  }
6125
6101
  .Layer__TransactionsActions > [slot=toggle] {
@@ -8171,6 +8147,69 @@ tbody .Layer__table__empty-row:first-child {
8171
8147
  .Layer__SearchField > [slot=search] {
8172
8148
  grid-area: search;
8173
8149
  }
8150
+ .Layer__JournalEntryForm {
8151
+ padding-top: var(--spacing-xl);
8152
+ }
8153
+ .Layer__JournalEntryForm .Layer__JournalEntryForm__Row {
8154
+ padding: 0 var(--spacing-xl);
8155
+ display: flex;
8156
+ gap: var(--spacing-md);
8157
+ }
8158
+ .Layer__JournalEntryForm .Layer__JournalEntryForm__Row > * {
8159
+ flex: 0 0 clamp(16rem, 100%, 24rem);
8160
+ }
8161
+ @container (max-width: 760px) {
8162
+ .Layer__JournalEntryForm .Layer__JournalEntryForm__Row {
8163
+ flex-direction: column;
8164
+ }
8165
+ .Layer__JournalEntryForm .Layer__JournalEntryForm__Row > * {
8166
+ flex: 1;
8167
+ max-width: clamp(12rem, 100%, 16rem);
8168
+ }
8169
+ }
8170
+ .Layer__JournalEntryForm .Layer__JournalEntryForm__Metadata {
8171
+ border-top: 1px solid var(--color-base-300);
8172
+ background-color: var(--color-base-50);
8173
+ }
8174
+ .Layer__JournalEntryForm .Layer__JournalEntryForm__AdditionalTextFields {
8175
+ flex: 1;
8176
+ min-width: 20rem;
8177
+ max-width: 32rem;
8178
+ }
8179
+ .Layer__JournalEntryForm__LineItem {
8180
+ display: flex;
8181
+ align-items: flex-end;
8182
+ gap: var(--spacing-xs);
8183
+ }
8184
+ .Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field--accountName {
8185
+ flex: 1 1 12rem;
8186
+ max-width: 20rem;
8187
+ }
8188
+ .Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field--amount {
8189
+ flex: 0 1 12rem;
8190
+ max-width: 12rem;
8191
+ }
8192
+ .Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field--tag {
8193
+ flex: 0 0 auto;
8194
+ min-width: 12rem;
8195
+ }
8196
+ .Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field--memo {
8197
+ flex: 2 1 12rem;
8198
+ }
8199
+ .Layer__JournalEntryForm__LineItem--readonly .Layer__JournalEntryForm__Field--removeButton {
8200
+ display: none;
8201
+ }
8202
+ @media (max-width: 768px) {
8203
+ .Layer__JournalEntryForm__LineItem {
8204
+ flex-direction: column;
8205
+ align-items: stretch;
8206
+ gap: var(--spacing-sm);
8207
+ }
8208
+ .Layer__JournalEntryForm__LineItem .Layer__JournalEntryForm__Field {
8209
+ flex: 1 1 auto;
8210
+ max-width: 16rem;
8211
+ }
8212
+ }
8174
8213
  .Layer__TagSelectorLayoutGroup {
8175
8214
  display: grid;
8176
8215
  grid-template-columns: repeat(2, minmax(0, 1fr));
@@ -8706,13 +8745,19 @@ tbody .Layer__table__empty-row:first-child {
8706
8745
  display: flex;
8707
8746
  flex-direction: column;
8708
8747
  gap: var(--spacing-sm);
8709
- max-width: 680px;
8748
+ min-width: 40rem;
8749
+ max-width: 64rem;
8710
8750
  }
8711
8751
  .Layer__expanded-bank-transaction-row__content-panels {
8712
8752
  box-sizing: border-box;
8713
8753
  display: flex;
8714
8754
  flex-direction: row;
8715
- max-width: 680px;
8755
+ }
8756
+ .Layer__bank-transaction-form-fields .Layer__ComboBoxContainer {
8757
+ max-width: 20rem;
8758
+ }
8759
+ .Layer__bank-transaction-form-fields .Layer__bank-transaction-memo-input-group {
8760
+ max-width: 40rem;
8716
8761
  }
8717
8762
  .Layer__expanded-bank-transaction-row__content-panel {
8718
8763
  box-sizing: border-box;
@@ -8721,6 +8766,7 @@ tbody .Layer__table__empty-row:first-child {
8721
8766
  flex-direction: column;
8722
8767
  gap: var(--spacing-sm);
8723
8768
  overflow: hidden;
8769
+ height: 0;
8724
8770
  max-width: 0;
8725
8771
  opacity: 0;
8726
8772
  transition: max-width 150ms ease-out, opacity 300ms ease-out;
@@ -8730,6 +8776,7 @@ tbody .Layer__table__empty-row:first-child {
8730
8776
  padding: 0 var(--spacing-md);
8731
8777
  }
8732
8778
  .Layer__expanded-bank-transaction-row__content-panel.Layer__expanded-bank-transaction-row__content-panel--active {
8779
+ height: auto;
8733
8780
  max-width: 100%;
8734
8781
  opacity: 1;
8735
8782
  }
@@ -8765,9 +8812,6 @@ tbody .Layer__table__empty-row:first-child {
8765
8812
  max-width: 100%;
8766
8813
  opacity: 1;
8767
8814
  }
8768
- .Layer__expanded-bank-transaction-row__content-panel .Layer__expanded-bank-transaction-row__table-cell--split-entry {
8769
- max-height: 38px;
8770
- }
8771
8815
  .Layer__expanded-bank-transaction-row__content-panel .Layer__expanded-bank-transaction-row__splits-buttons {
8772
8816
  max-height: 38px;
8773
8817
  white-space: nowrap;
@@ -8791,7 +8835,7 @@ tbody .Layer__table__empty-row:first-child {
8791
8835
  display: flex;
8792
8836
  flex: 1;
8793
8837
  flex-direction: column;
8794
- gap: var(--spacing-sm);
8838
+ gap: var(--spacing-xs);
8795
8839
  padding-top: 2px;
8796
8840
  }
8797
8841
  .Layer__expanded-bank-transaction-row__splits-total {
@@ -8837,7 +8881,6 @@ tbody .Layer__table__empty-row:first-child {
8837
8881
  .Layer__expanded-bank-transaction-row__description textarea {
8838
8882
  height: 100px;
8839
8883
  width: 100%;
8840
- max-width: 680px;
8841
8884
  }
8842
8885
  .Layer__expanded-bank-transaction-row__file-upload {
8843
8886
  display: flex;
@@ -8866,9 +8909,33 @@ tbody .Layer__table__empty-row:first-child {
8866
8909
  justify-content: flex-end;
8867
8910
  }
8868
8911
  .Layer__expanded-bank-transaction-row__table-cell--split-entry {
8912
+ display: grid;
8913
+ grid-template-areas: "amount category category button" "customer tags tags .";
8914
+ grid-template-columns: minmax(8rem, 12rem) minmax(12rem, 16rem) 1fr auto;
8915
+ gap: var(--spacing-xs);
8916
+ align-items: start;
8917
+ max-width: 40rem;
8918
+ }
8919
+ .Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__category-menu--full {
8920
+ grid-area: category;
8921
+ width: 100%;
8922
+ }
8923
+ .Layer__expanded-bank-transaction-row__table-cell--split-entry__amount {
8924
+ grid-area: amount;
8925
+ }
8926
+ .Layer__expanded-bank-transaction-row__table-cell--split-entry__customer {
8927
+ grid-area: customer;
8928
+ }
8929
+ .Layer__expanded-bank-transaction-row__table-cell--split-entry__button {
8930
+ grid-area: button;
8931
+ }
8932
+ .Layer__expanded-bank-transaction-row__table-cell--split-entry__tags {
8869
8933
  display: flex;
8870
- flex-direction: row;
8871
- gap: var(--spacing-md);
8934
+ grid-area: tags;
8935
+ gap: var(--spacing-sm);
8936
+ }
8937
+ .Layer__expanded-bank-transaction-row__table-cell--split-entry__tags .Layer__JournalEntryForm__Field--tag {
8938
+ width: 12rem;
8872
8939
  }
8873
8940
  .Layer__bank-transactions__list {
8874
8941
  list-style: none;
@@ -9240,14 +9307,15 @@ tbody .Layer__table__empty-row:first-child {
9240
9307
  .Layer__expanded-bank-transaction-row__match-table {
9241
9308
  display: grid;
9242
9309
  grid-template-columns: 120px minmax(0, 1fr) 100px max-content;
9243
- gap: 0;
9310
+ gap: var(--spacing-xs) 0;
9311
+ max-width: 40rem;
9244
9312
  margin-bottom: var(--spacing-sm);
9245
9313
  }
9246
9314
  .Layer__expanded-bank-transaction-row__match-table:has(.Layer__expanded-bank-transaction-row__match-table__status) {
9247
9315
  grid-template-columns: 120px minmax(0, 1fr) 100px max-content min-content;
9248
9316
  }
9249
9317
  .Layer__expanded-bank-transaction-row__match-table:not(:has(.Layer__expanded-bank-transaction-row__match-table__link)) {
9250
- grid-template-columns: 120px 1fr 100px;
9318
+ grid-template-columns: 120px minmax(0, 1fr) 100px;
9251
9319
  }
9252
9320
  .Layer__expanded-bank-transaction-row__match-table:not(:has(.Layer__expanded-bank-transaction-row__match-table__link)):has(.Layer__expanded-bank-transaction-row__match-table__status) {
9253
9321
  grid-template-columns: 120px minmax(0, 1fr) 100px min-content;
@@ -9485,15 +9553,12 @@ tbody .Layer__table__empty-row:first-child {
9485
9553
  justify-content: space-between;
9486
9554
  width: 100% !important;
9487
9555
  }
9488
- .Layer__expanded-bank-transaction-row__match-table__amount {
9489
- display: none !important;
9490
- }
9491
9556
  .Layer__expanded-bank-transaction-row__match-table__desc {
9492
9557
  gap: var(--spacing-sm);
9493
9558
  justify-content: space-between;
9494
9559
  }
9495
9560
  .Layer__expanded-bank-transaction-row__match-table__desc > span:first-child {
9496
- width: calc(100% - 120px);
9561
+ width: calc(100% - 220px);
9497
9562
  }
9498
9563
  .Layer__expanded-bank-transaction-row__match-table__desc > span:nth-child(2) {
9499
9564
  flex: 0;
@@ -9507,11 +9572,10 @@ tbody .Layer__table__empty-row:first-child {
9507
9572
  display: flex;
9508
9573
  flex: 1;
9509
9574
  flex-direction: column;
9510
- gap: var(--spacing-sm);
9575
+ gap: var(--spacing-xs);
9511
9576
  width: 100%;
9512
9577
  }
9513
9578
  .Layer__expanded-bank-transaction-row__table-cell--split-entry {
9514
- gap: var(--spacing-sm);
9515
9579
  width: 100%;
9516
9580
  }
9517
9581
  .Layer__expanded-bank-transaction-row__table-cell--split-entry input {
@@ -9694,7 +9758,7 @@ tbody .Layer__table__empty-row:first-child {
9694
9758
  .Layer__expanded-bank-transaction-row__total-and-btns .Layer__input-tooltip,
9695
9759
  .Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__input-tooltip {
9696
9760
  flex: 1;
9697
- max-width: 200px;
9761
+ max-width: 12rem;
9698
9762
  }
9699
9763
  .Layer__expanded-bank-transaction-row__total-and-btns .Layer__input-tooltip .Layer__input,
9700
9764
  .Layer__expanded-bank-transaction-row__table-cell--split-entry .Layer__input-tooltip .Layer__input {
@@ -11429,10 +11493,7 @@ tbody .Layer__table__empty-row:first-child {
11429
11493
  display: flex;
11430
11494
  align-items: stretch;
11431
11495
  border-radius: var(--border-radius-sm);
11432
- box-shadow:
11433
- 0 0 0 1px rgba(16, 24, 40, 0.04),
11434
- 0 2px 4px 0 rgba(16, 24, 40, 0.06),
11435
- 0 4px 12px 0 rgba(16, 24, 40, 0.08);
11496
+ border: 1px solid var(--border-color);
11436
11497
  margin-right: var(--spacing-xl);
11437
11498
  margin-bottom: var(--spacing-xl);
11438
11499
  margin-left: var(--spacing-xl);
@@ -11558,7 +11619,6 @@ tbody .Layer__table__empty-row:first-child {
11558
11619
  @container (max-width: 759px) and (min-width: 500px) {
11559
11620
  .Layer__profit-and-loss__chart_with_summaries {
11560
11621
  flex-direction: column;
11561
- box-shadow: none;
11562
11622
  margin-right: 0;
11563
11623
  margin-bottom: var(--spacing-md);
11564
11624
  margin-left: 0;
@@ -11567,7 +11627,6 @@ tbody .Layer__table__empty-row:first-child {
11567
11627
  @container (max-width: 500px) {
11568
11628
  .Layer__profit-and-loss__chart_with_summaries {
11569
11629
  flex-direction: column;
11570
- box-shadow: none;
11571
11630
  margin-right: 0;
11572
11631
  margin-bottom: var(--spacing-md);
11573
11632
  margin-left: 0;
@@ -11642,24 +11701,24 @@ tbody .Layer__table__empty-row:first-child {
11642
11701
  .Layer__profit-and-loss-detailed-charts__header--tablet,
11643
11702
  .Layer__profit-and-loss-detailed-charts__header {
11644
11703
  display: flex;
11645
- justify-content: space-between;
11646
11704
  align-items: flex-start;
11647
- padding: var(--spacing-xl);
11705
+ justify-content: space-between;
11706
+ padding: var(--spacing-lg);
11648
11707
  padding-bottom: var(--spacing-lg);
11649
11708
  box-shadow: 0 -1px 0 0 var(--color-base-300) inset;
11650
11709
  }
11651
11710
  .Layer__profit-and-loss-detailed-charts__header--tablet button.Layer__btn.Layer__btn--icon-only,
11652
11711
  .Layer__profit-and-loss-detailed-charts__header button.Layer__btn.Layer__btn--icon-only {
11653
- width: 32px;
11654
11712
  height: 32px;
11655
11713
  min-height: 32px;
11714
+ width: 32px;
11656
11715
  padding: 0;
11657
11716
  }
11658
11717
  header.Layer__profit-and-loss-detailed-charts__header--tablet {
11659
11718
  display: none;
11660
- justify-content: flex-start;
11661
11719
  gap: var(--spacing-md);
11662
11720
  align-items: center;
11721
+ justify-content: flex-start;
11663
11722
  }
11664
11723
  @container (max-width: 1023px) and (min-width: 768px) {
11665
11724
  header.Layer__profit-and-loss-detailed-charts__header {
@@ -11688,20 +11747,20 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
11688
11747
  }
11689
11748
  .Layer__profit-and-loss-detailed-charts {
11690
11749
  width: 100%;
11691
- background: var(--color-base-0);
11692
11750
  border-radius: var(--border-radius-sm);
11751
+ background: var(--color-base-0);
11693
11752
  }
11694
11753
  .Layer__profit-and-loss-detailed-charts .chart-field {
11695
11754
  width: 100%;
11696
11755
  }
11697
11756
  .Layer__profit-and-loss-detailed-charts .chart-container {
11698
- width: 100%;
11757
+ box-sizing: border-box;
11699
11758
  height: 280px;
11759
+ width: 100%;
11700
11760
  padding-top: var(--spacing-2xl);
11761
+ padding-right: var(--spacing-md);
11701
11762
  padding-bottom: var(--spacing-lg);
11702
11763
  padding-left: var(--spacing-md);
11703
- padding-right: var(--spacing-md);
11704
- box-sizing: border-box;
11705
11764
  }
11706
11765
  @container (max-width: 280px) {
11707
11766
  .Layer__profit-and-loss-detailed-charts .chart-container {
@@ -11727,35 +11786,35 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
11727
11786
  .Layer__profit-and-loss-detailed-charts .filters {
11728
11787
  display: grid;
11729
11788
  grid-template-columns: auto minmax(0, 1fr);
11789
+ gap: var(--spacing-xs);
11730
11790
  align-items: center;
11731
- margin: 0 var(--spacing-md);
11732
11791
  padding: var(--spacing-2xs) var(--spacing-xs);
11733
- gap: var(--spacing-xs);
11734
11792
  border-bottom: 1px solid var(--color-base-300);
11793
+ margin: 0 var(--spacing-md);
11735
11794
  }
11736
11795
  .Layer__profit-and-loss-detailed-charts .type-select {
11737
- border-color: transparent;
11796
+ display: inline-flex;
11738
11797
  font-family: var(--font-family);
11739
11798
  font-weight: var(--font-weight-normal);
11799
+ border-color: transparent;
11740
11800
  font-variant-numeric: lining-nums proportional-nums;
11741
11801
  font-feature-settings:
11742
11802
  "cv10" on,
11743
11803
  "cv05" on,
11744
11804
  "cv08" on,
11745
11805
  "ss03" on;
11746
- display: inline-flex;
11747
11806
  }
11748
11807
  .Layer__profit-and-loss-detailed-charts .type-select .Layer__select__control {
11749
- border-color: transparent;
11808
+ box-shadow: none;
11750
11809
  font-family: var(--font-family);
11751
11810
  font-weight: var(--font-weight-normal);
11811
+ border-color: transparent;
11752
11812
  font-variant-numeric: lining-nums proportional-nums;
11753
11813
  font-feature-settings:
11754
11814
  "cv10" on,
11755
11815
  "cv05" on,
11756
11816
  "cv08" on,
11757
11817
  "ss03" on;
11758
- box-shadow: none;
11759
11818
  }
11760
11819
  .Layer__profit-and-loss-detailed-charts .type-select .Layer__select__placeholder {
11761
11820
  font-size: 12px;
@@ -11772,17 +11831,17 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
11772
11831
  display: none;
11773
11832
  }
11774
11833
  .Layer__profit-and-loss-detailed-charts .Layer__select__menu {
11834
+ z-index: 2;
11775
11835
  width: min-content;
11776
11836
  max-width: 300px;
11777
- z-index: 2;
11778
11837
  }
11779
11838
  .Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option {
11839
+ z-index: 999;
11840
+ overflow: hidden;
11780
11841
  width: 100%;
11781
11842
  font-size: 12px;
11782
11843
  white-space: nowrap;
11783
- overflow: hidden;
11784
11844
  text-overflow: ellipsis;
11785
- z-index: 999;
11786
11845
  }
11787
11846
  .Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option.Layer__select__option--is-focused,
11788
11847
  .Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option.Layer__select__option--is-selected,
@@ -11791,8 +11850,8 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
11791
11850
  .Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option:active,
11792
11851
  .Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option:focus-visible,
11793
11852
  .Layer__profit-and-loss-detailed-charts .Layer__select__menu .Layer__select__option:focus-within {
11794
- color: var(--text-color-primary);
11795
11853
  background: var(--color-base-100);
11854
+ color: var(--text-color-primary);
11796
11855
  }
11797
11856
  .Layer__profit-and-loss-detailed-charts .details-container {
11798
11857
  padding: var(--spacing-md);
@@ -11804,9 +11863,9 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
11804
11863
  }
11805
11864
  .Layer__profit-and-loss-detailed-charts .details-container table th,
11806
11865
  .Layer__profit-and-loss-detailed-charts .details-container table td {
11807
- text-align: left;
11808
- font-size: 12px;
11809
11866
  padding: var(--spacing-2xs) var(--spacing-xs);
11867
+ font-size: 12px;
11868
+ text-align: left;
11810
11869
  transition: color 150ms ease-out;
11811
11870
  }
11812
11871
  .Layer__profit-and-loss-detailed-charts .details-container table th:last-child,
@@ -11816,11 +11875,11 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
11816
11875
  text-align: right;
11817
11876
  }
11818
11877
  .Layer__profit-and-loss-detailed-charts .details-container table th {
11878
+ padding-bottom: var(--spacing-sm);
11879
+ border-bottom: 1px solid var(--color-base-300);
11819
11880
  cursor: pointer;
11820
11881
  color: var(--color-base-500);
11821
- border-bottom: 1px solid var(--color-base-300);
11822
11882
  transition: color 150ms ease-out;
11823
- padding-bottom: var(--spacing-sm);
11824
11883
  }
11825
11884
  .Layer__profit-and-loss-detailed-charts .details-container table th:hover {
11826
11885
  color: var(--color-base-800);
@@ -11835,13 +11894,13 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
11835
11894
  }
11836
11895
  .Layer__profit-and-loss-detailed-charts .details-container .share-cell-content {
11837
11896
  display: flex;
11897
+ gap: var(--spacing-2xs);
11838
11898
  align-items: center;
11839
11899
  justify-content: flex-end;
11840
- gap: var(--spacing-2xs);
11841
11900
  }
11842
11901
  .Layer__profit-and-loss-detailed-charts .details-container .share-cell-content .share-icon {
11843
- width: 12px;
11844
11902
  height: 12px;
11903
+ width: 12px;
11845
11904
  border-radius: 2px;
11846
11905
  }
11847
11906
  .Layer__profit-and-loss-detailed-charts .details-container .share-cell-content .Layer__value-icon--uncategorized {
@@ -11862,9 +11921,9 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
11862
11921
  width: 100%;
11863
11922
  }
11864
11923
  .Layer__profit-and-loss-detailed-table__row {
11865
- transition: background-color 300ms ease-out;
11866
- background: transparent;
11867
11924
  border-radius: 2px;
11925
+ background: transparent;
11926
+ transition: background-color 300ms ease-out;
11868
11927
  }
11869
11928
  .Layer__profit-and-loss-detailed-table__row .category-col,
11870
11929
  .Layer__profit-and-loss-detailed-table__row .value-col {
@@ -11894,8 +11953,8 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
11894
11953
  }
11895
11954
  @container (max-width: 1023px) {
11896
11955
  .Layer__profit-and-loss-detailed-charts {
11897
- width: 100%;
11898
11956
  height: 100%;
11957
+ width: 100%;
11899
11958
  }
11900
11959
  }
11901
11960
  @container (max-width: 1023px) and (min-width: 768px) {
@@ -11914,14 +11973,14 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
11914
11973
  }
11915
11974
  .Layer__profit-and-loss-detailed-charts .Layer__profit-and-loss-detailed-charts__table-wrapper {
11916
11975
  display: flex;
11917
- flex-direction: column;
11918
11976
  flex: 1;
11977
+ flex-direction: column;
11919
11978
  }
11920
11979
  .Layer__profit-and-loss-detailed-charts .header--tablet {
11921
11980
  display: flex;
11922
11981
  flex-direction: column;
11923
- padding-left: var(--spacing-xl);
11924
11982
  padding-top: var(--spacing-lg);
11983
+ padding-left: var(--spacing-xl);
11925
11984
  }
11926
11985
  .Layer__profit-and-loss-detailed-charts .header--tablet .Layer__text {
11927
11986
  margin: 0;