@layerfi/components 0.1.107-alpha → 0.1.107-alpha.1

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
@@ -82,6 +82,7 @@
82
82
  --text-sm: 12px;
83
83
  --text-md: 14px;
84
84
  --text-lg: 16px;
85
+ --text-xl: 20px;
85
86
  --text-heading: 24px;
86
87
  --text-heading-secondary: 20px;
87
88
  --text-heading-page: var(--text-heading);
@@ -325,6 +326,7 @@
325
326
  gap: var(--spacing-3xs);
326
327
  align-items: center;
327
328
  height: var(--size);
329
+ min-inline-size: fit-content;
328
330
  padding: var(--spacing-3xs) var(--spacing-xs);
329
331
  border-radius: var(--border-radius-5xl);
330
332
  background-color: var(--badge-bg-color);
@@ -1024,13 +1026,6 @@
1024
1026
  align-items: center;
1025
1027
  gap: var(--spacing-md);
1026
1028
  }
1027
- .Layer__datetime__date {
1028
- color: var(--color-base-800);
1029
- min-width: 75px;
1030
- }
1031
- .Layer__datetime__time {
1032
- color: var(--color-base-600);
1033
- }
1034
1029
  .Layer__DatePickerModeSelector__container {
1035
1030
  display: flex;
1036
1031
  justify-content: flex-end;
@@ -1108,7 +1103,7 @@
1108
1103
  #Layer__datepicker__portal .react-datepicker__input-container button {
1109
1104
  box-sizing: border-box;
1110
1105
  position: relative;
1111
- width: 13rem;
1106
+ width: 24ch;
1112
1107
  padding: 8px;
1113
1108
  border-radius: var(--input-border-radius);
1114
1109
  border: none;
@@ -4513,7 +4508,7 @@ tbody .Layer__table__empty-row:first-child {
4513
4508
  }
4514
4509
  .Layer__UI__Button[data-variant=text] {
4515
4510
  --size: 1.75rem;
4516
- padding-inline: var(--spacing-xs);
4511
+ padding-inline: 0;
4517
4512
  border: none;
4518
4513
  background-color: transparent;
4519
4514
  }
@@ -4870,7 +4865,7 @@ tbody .Layer__table__empty-row:first-child {
4870
4865
  }
4871
4866
  .Layer__UI__TextArea {
4872
4867
  box-sizing: content-box;
4873
- min-block-size: 4lh;
4868
+ min-block-size: 5lh;
4874
4869
  padding-block: var(--spacing-xs);
4875
4870
  padding-inline-start: var(--spacing-xs);
4876
4871
  padding-inline-end: var(--spacing-3xs);
@@ -4979,6 +4974,20 @@ tbody .Layer__table__empty-row:first-child {
4979
4974
  outline: 1px solid var(--color-base-100);
4980
4975
  outline-offset: 1px;
4981
4976
  }
4977
+ .Layer__Meter [slot=bar] {
4978
+ overflow: hidden;
4979
+ height: 0.75rem;
4980
+ border-radius: var(--border-radius-2xs);
4981
+ }
4982
+ .Layer__Meter__svg {
4983
+ width: 100%;
4984
+ }
4985
+ .Layer__Meter__track {
4986
+ fill: var(--color-base-300);
4987
+ }
4988
+ .Layer__Meter__fill {
4989
+ fill: var(--color-base-800);
4990
+ }
4982
4991
  .Layer__ModalOverlay {
4983
4992
  position: fixed;
4984
4993
  z-index: 100;
@@ -4987,28 +4996,34 @@ tbody .Layer__table__empty-row:first-child {
4987
4996
  background: rgba(0, 0, 0, 0.5);
4988
4997
  place-items: center;
4989
4998
  }
4990
- .Layer__ModalOverlay[data-entering] {
4991
- animation-duration: 150ms;
4999
+ .Layer__ModalOverlay[data-variant=drawer] {
5000
+ place-items: end;
5001
+ }
5002
+ .Layer__ModalOverlay[data-variant=drawer][data-entering] {
5003
+ animation: drawer-darken 300ms;
4992
5004
  }
4993
- .Layer__ModalOverlay[data-exiting] {
4994
- animation-duration: 150ms;
5005
+ .Layer__ModalOverlay[data-variant=drawer][data-exiting] {
5006
+ animation: drawer-darken 300ms reverse ease-in;
4995
5007
  }
4996
5008
  .Layer__Modal {
4997
5009
  block-size: min(42rem, 90%);
4998
5010
  inline-size: min(36rem, 90%);
4999
5011
  }
5000
- .Layer__Modal[data-entering] {
5001
- animation-duration: 300ms;
5002
- }
5003
- .Layer__Modal[data-exiting] {
5004
- animation-duration: 300ms;
5005
- }
5006
5012
  .Layer__Modal[data-flex-block] {
5007
5013
  block-size: auto;
5008
5014
  }
5009
5015
  .Layer__Modal[data-size=lg] {
5010
5016
  inline-size: min(42rem, 90%);
5011
5017
  }
5018
+ .Layer__Modal[data-variant=drawer] {
5019
+ block-size: 100%;
5020
+ }
5021
+ .Layer__Modal[data-variant=drawer][data-entering] {
5022
+ animation: drawer-slide 300ms;
5023
+ }
5024
+ .Layer__Modal[data-variant=drawer][data-exiting] {
5025
+ animation: drawer-slide 300ms reverse ease-in;
5026
+ }
5012
5027
  .Layer__Dialog {
5013
5028
  display: flex;
5014
5029
  flex-direction: column;
@@ -5021,6 +5036,26 @@ tbody .Layer__table__empty-row:first-child {
5021
5036
  .Layer__Dialog [slot=content] {
5022
5037
  flex: 1;
5023
5038
  }
5039
+ .Layer__Dialog[data-variant=drawer] {
5040
+ padding: 0;
5041
+ border-radius: 0;
5042
+ }
5043
+ @keyframes drawer-slide {
5044
+ from {
5045
+ transform: translateX(100%);
5046
+ }
5047
+ to {
5048
+ transform: translateX(0);
5049
+ }
5050
+ }
5051
+ @keyframes drawer-darken {
5052
+ from {
5053
+ background: rgba(0, 0, 0, 0);
5054
+ }
5055
+ to {
5056
+ background: rgba(0, 0, 0, 0.5);
5057
+ }
5058
+ }
5024
5059
  .Layer__ModalCloseButton--position-absolute {
5025
5060
  position: absolute;
5026
5061
  align-self: end;
@@ -5030,6 +5065,7 @@ tbody .Layer__table__empty-row:first-child {
5030
5065
  grid-template-areas: "title close";
5031
5066
  grid-template-columns: 1fr auto;
5032
5067
  gap: var(--spacing-sm);
5068
+ align-items: center;
5033
5069
  }
5034
5070
  .Layer__ModalTitleWithClose > [slot=title] {
5035
5071
  grid-area: title;
@@ -5403,6 +5439,7 @@ tbody .Layer__table__empty-row:first-child {
5403
5439
  border-bottom: 1px solid var(--color-base-300);
5404
5440
  }
5405
5441
  .Layer__UI__Table-Column {
5442
+ box-sizing: border-box;
5406
5443
  padding: var(--spacing-xs) var(--spacing-sm);
5407
5444
  font-size: var(--text-sm);
5408
5445
  font-weight: var(--font-weight-normal);
@@ -5428,6 +5465,7 @@ tbody .Layer__table__empty-row:first-child {
5428
5465
  font-size: var(--text-md);
5429
5466
  font-weight: var(--font-weight-normal);
5430
5467
  color: var(--color-base-800);
5468
+ height: inherit;
5431
5469
  }
5432
5470
  .Layer__UI__Table-Cell:first-child {
5433
5471
  padding-left: var(--spacing-md);
@@ -5582,7 +5620,7 @@ tbody .Layer__table__empty-row:first-child {
5582
5620
  font-weight: var(--font-weight-bold);
5583
5621
  }
5584
5622
  .Layer__MoneyText {
5585
- color: var(--color-base-700);
5623
+ color: var(--color-base-800);
5586
5624
  overflow-x: hidden;
5587
5625
  text-overflow: ellipsis;
5588
5626
  }
@@ -5675,6 +5713,12 @@ tbody .Layer__table__empty-row:first-child {
5675
5713
  .Layer__Span[data-size=lg] {
5676
5714
  font-size: var(--text-lg);
5677
5715
  }
5716
+ .Layer__Header[data-size=xl],
5717
+ .Layer__Label[data-size=xl],
5718
+ .Layer__P[data-size=xl],
5719
+ .Layer__Span[data-size=xl] {
5720
+ font-size: var(--text-xl);
5721
+ }
5678
5722
  .Layer__Header[data-pb="3xs"],
5679
5723
  .Layer__Label[data-pb="3xs"],
5680
5724
  .Layer__P[data-pb="3xs"],
@@ -6715,35 +6759,38 @@ tbody .Layer__table__empty-row:first-child {
6715
6759
  font-size: var(--text-md);
6716
6760
  }
6717
6761
  }
6718
- .Layer__UI__Table__InvoicesTable {
6762
+ .Layer__InvoiceTable {
6763
+ width: clamp(48rem, 100%, 1406px);
6764
+ }
6765
+ .Layer__UI__Table__InvoiceTable {
6719
6766
  table-layout: fixed;
6720
6767
  }
6721
- .Layer__UI__Table__InvoicesTable .Layer__UI__Table-Column__InvoicesTable--SentAt {
6768
+ .Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--SentAt {
6722
6769
  width: 15%;
6723
- min-width: 6.25rem;
6770
+ min-width: 8rem;
6724
6771
  }
6725
- .Layer__UI__Table__InvoicesTable .Layer__UI__Table-Column__InvoicesTable--InvoiceNo {
6772
+ .Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--InvoiceNo {
6726
6773
  width: 10%;
6727
- min-width: 4rem;
6774
+ min-width: 6.75rem;
6728
6775
  }
6729
- .Layer__UI__Table__InvoicesTable .Layer__UI__Table-Column__InvoicesTable--Customer {
6776
+ .Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Customer {
6730
6777
  width: 35%;
6731
- min-width: 10rem;
6778
+ min-width: 11.75rem;
6732
6779
  }
6733
- .Layer__UI__Table__InvoicesTable .Layer__UI__Table-Column__InvoicesTable--Total {
6780
+ .Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Total {
6734
6781
  width: 15%;
6735
- min-width: 6rem;
6782
+ min-width: 7.75rem;
6736
6783
  border-right: 1px solid var(--color-base-300);
6737
6784
  text-align: end;
6738
6785
  }
6739
- .Layer__UI__Table__InvoicesTable .Layer__UI__Table-Column__InvoicesTable--Status {
6786
+ .Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Status {
6740
6787
  width: 25%;
6741
- min-width: 8.25rem;
6788
+ min-width: 10rem;
6742
6789
  }
6743
- .Layer__UI__Table__InvoicesTable .Layer__UI__Table-Cell__InvoicesTable--Total {
6790
+ .Layer__UI__Table__InvoiceTable .Layer__UI__Table-Cell__InvoiceTable--Total {
6744
6791
  border-right: 1px solid var(--color-base-300);
6745
6792
  }
6746
- .Layer__InvoicesTable__StatusFilter {
6793
+ .Layer__InvoiceTable__StatusFilter {
6747
6794
  width: 11rem;
6748
6795
  }
6749
6796
  .Layer__InvoiceDetail__SubHeader {
@@ -6815,6 +6862,66 @@ tbody .Layer__table__empty-row:first-child {
6815
6862
  padding-left: 2.25rem;
6816
6863
  border-bottom: 1px solid var(--border-color);
6817
6864
  }
6865
+ .Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__InvoiceNo,
6866
+ .Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__PaidAt,
6867
+ .Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__PaymentMethod,
6868
+ .Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__ReferenceNo,
6869
+ .Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__Memo {
6870
+ grid-template-columns: 8rem auto;
6871
+ min-width: 16rem;
6872
+ }
6873
+ .Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__Amount {
6874
+ grid-template-columns: 8rem 8rem;
6875
+ justify-content: end;
6876
+ }
6877
+ .Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__OutstandingBalance {
6878
+ display: grid;
6879
+ grid-template-columns: 8rem 7.5rem;
6880
+ justify-content: end;
6881
+ }
6882
+ .Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__FormError {
6883
+ height: 4rem;
6884
+ padding-inline: var(--spacing-md);
6885
+ border-top: 1px solid var(--border-color);
6886
+ }
6887
+ .Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Field__InvoiceNo {
6888
+ display: grid;
6889
+ }
6890
+ .Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Section {
6891
+ padding: var(--spacing-md);
6892
+ border-top: 1px solid var(--border-color);
6893
+ }
6894
+ .Layer__InvoicePaymentForm .Layer__InvoicePaymentForm__Submit {
6895
+ display: grid;
6896
+ }
6897
+ .Layer__InvoiceSummaryStats__Container {
6898
+ box-sizing: border-box;
6899
+ width: clamp(48rem, 100%, 1406px);
6900
+ padding: var(--spacing-md) var(--spacing-lg);
6901
+ }
6902
+ .Layer__InvoiceSummaryStats__Payments {
6903
+ box-sizing: border-box;
6904
+ min-width: 12rem;
6905
+ padding: var(--spacing-md) var(--spacing-lg);
6906
+ border-radius: var(--border-radius-2xs);
6907
+ border: 1px solid var(--border-color);
6908
+ }
6909
+ .Layer__InvoiceSummaryStats__Meter__track {
6910
+ fill: var(--color-info-bg);
6911
+ }
6912
+ .Layer__InvoiceSummaryStats__Meter__fill {
6913
+ fill: var(--color-info-warning-bg);
6914
+ }
6915
+ .Layer__PaymentMethodComboBox {
6916
+ display: grid;
6917
+ grid-template-areas: "label" "input";
6918
+ gap: var(--spacing-3xs);
6919
+ }
6920
+ .Layer__PaymentMethodComboBox--inline {
6921
+ grid-template-areas: "label input";
6922
+ gap: 0;
6923
+ align-items: center;
6924
+ }
6818
6925
  .Layer__DataTableHeader__Filters {
6819
6926
  height: 4.25rem;
6820
6927
  border-bottom: 1px solid var(--border-color);
@@ -6823,6 +6930,45 @@ tbody .Layer__table__empty-row:first-child {
6823
6930
  height: 4.75rem;
6824
6931
  border-bottom: 1px solid var(--border-color);
6825
6932
  }
6933
+ .Layer__UI__VirtualizedTable__container {
6934
+ position: relative;
6935
+ overflow: auto;
6936
+ padding-right: var(--spacing-sm);
6937
+ }
6938
+ .Layer__UI__VirtualizedTable__state-container {
6939
+ display: flex;
6940
+ align-items: center;
6941
+ justify-content: center;
6942
+ }
6943
+ .Layer__UI__VirtualizedTable__header-row {
6944
+ display: flex;
6945
+ width: 100%;
6946
+ }
6947
+ .Layer__table-header.Layer__UI__VirtualizedTable__header-cell {
6948
+ box-sizing: border-box;
6949
+ display: flex;
6950
+ flex: 0 0 auto;
6951
+ padding: 0;
6952
+ }
6953
+ .Layer__UI__VirtualizedTable__spacer {
6954
+ visibility: hidden;
6955
+ border: none;
6956
+ position: absolute;
6957
+ }
6958
+ .Layer__UI__VirtualizedTable__row {
6959
+ position: absolute;
6960
+ display: flex;
6961
+ width: 100%;
6962
+ align-items: center;
6963
+ padding-right: var(--spacing-sm);
6964
+ box-sizing: border-box;
6965
+ }
6966
+ .Layer__UI__VirtualizedTable__cell {
6967
+ box-sizing: border-box;
6968
+ flex: 0 0 auto;
6969
+ align-content: center;
6970
+ min-width: 0;
6971
+ }
6826
6972
  .Layer__caobfb {
6827
6973
  padding-inline: var(--spacing-md);
6828
6974
  padding-block: var(--spacing-sm);
@@ -7651,6 +7797,95 @@ tbody .Layer__table__empty-row:first-child {
7651
7797
  .Layer__separator[data-mbs="5xl"] {
7652
7798
  margin-block-start: var(--spacing-5xl);
7653
7799
  }
7800
+ :root {
7801
+ --pnl-detail-date-col-width: 12%;
7802
+ --pnl-detail-type-col-width: 12%;
7803
+ --pnl-detail-account-col-width: 18%;
7804
+ --pnl-detail-description-col-width: 28%;
7805
+ --pnl-detail-amount-col-width: 15%;
7806
+ --pnl-detail-balance-col-width: 15%;
7807
+ }
7808
+ .Layer__UI__Table__ProfitAndLossDetailReport {
7809
+ table-layout: fixed;
7810
+ width: 100%;
7811
+ }
7812
+ .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Date {
7813
+ width: var(--pnl-detail-date-col-width);
7814
+ min-width: 7rem;
7815
+ color: var(--color-base-600);
7816
+ }
7817
+ .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Type {
7818
+ width: var(--pnl-detail-type-col-width);
7819
+ }
7820
+ .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Account {
7821
+ width: var(--pnl-detail-account-col-width);
7822
+ min-width: 10rem;
7823
+ }
7824
+ .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Description {
7825
+ width: var(--pnl-detail-description-col-width);
7826
+ min-width: 12rem;
7827
+ }
7828
+ .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Amount {
7829
+ width: var(--pnl-detail-amount-col-width);
7830
+ min-width: 7.5rem;
7831
+ text-align: right;
7832
+ justify-content: flex-end;
7833
+ }
7834
+ .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Balance {
7835
+ width: var(--pnl-detail-balance-col-width);
7836
+ min-width: 7.5rem;
7837
+ text-align: right;
7838
+ justify-content: flex-end;
7839
+ }
7840
+ .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Date {
7841
+ width: var(--pnl-detail-date-col-width);
7842
+ min-width: 7rem;
7843
+ }
7844
+ .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Type {
7845
+ width: var(--pnl-detail-type-col-width);
7846
+ }
7847
+ .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Type button {
7848
+ font-size: inherit;
7849
+ font-family: inherit;
7850
+ font-weight: inherit;
7851
+ font-feature-settings: inherit;
7852
+ }
7853
+ .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Account {
7854
+ width: var(--pnl-detail-account-col-width);
7855
+ min-width: 10rem;
7856
+ color: var(--color-base-600);
7857
+ }
7858
+ .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Description {
7859
+ width: var(--pnl-detail-description-col-width);
7860
+ min-width: 12rem;
7861
+ }
7862
+ .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Amount {
7863
+ width: var(--pnl-detail-amount-col-width);
7864
+ min-width: 7.5rem;
7865
+ text-align: right;
7866
+ }
7867
+ .Layer__UI__Table__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Balance {
7868
+ width: var(--pnl-detail-balance-col-width);
7869
+ min-width: 7.5rem;
7870
+ text-align: right;
7871
+ }
7872
+ .Layer__profit-and-loss-detail-report__total-row {
7873
+ display: grid;
7874
+ grid-template-columns: var(--pnl-detail-date-col-width) var(--pnl-detail-type-col-width) var(--pnl-detail-account-col-width) var(--pnl-detail-description-col-width) var(--pnl-detail-amount-col-width) var(--pnl-detail-balance-col-width);
7875
+ padding-top: var(--spacing-sm);
7876
+ padding-bottom: var(--spacing-sm);
7877
+ padding-right: var(--spacing-md);
7878
+ border-top: 1px solid var(--color-base-300);
7879
+ }
7880
+ .Layer__profit-and-loss-detail-report__total-label {
7881
+ grid-column: 1;
7882
+ padding-left: var(--spacing-md);
7883
+ }
7884
+ .Layer__profit-and-loss-detail-report__total-amount {
7885
+ grid-column: 5;
7886
+ justify-content: right;
7887
+ padding-right: var(--spacing-sm);
7888
+ }
7654
7889
  .Layer__profit-and-loss-header__bookkeeping-status {
7655
7890
  position: absolute;
7656
7891
  bottom: -20px;
@@ -9769,7 +10004,7 @@ tbody .Layer__table__empty-row:first-child {
9769
10004
  width: 8rem;
9770
10005
  }
9771
10006
  .Layer__chart-of-accounts__table .Layer__chart-of-accounts--actions {
9772
- width: 8rem;
10007
+ width: 10rem;
9773
10008
  }
9774
10009
  .Layer__chart-of-accounts__table .Layer__table-cell-content .Layer__Span {
9775
10010
  color: var(--text-secondary);
@@ -10797,22 +11032,22 @@ tbody .Layer__table__empty-row:first-child {
10797
11032
  height: 24px;
10798
11033
  }
10799
11034
  .Layer__loader {
10800
- width: 100%;
11035
+ box-sizing: border-box;
10801
11036
  display: flex;
11037
+ gap: 8px;
10802
11038
  align-items: center;
10803
11039
  justify-content: center;
10804
- gap: 8px;
11040
+ width: 100%;
10805
11041
  padding: var(--spacing-md);
10806
- color: var(--text-color-primary);
10807
11042
  font-size: var(--text-sm);
10808
- box-sizing: border-box;
11043
+ color: var(--text-color-primary);
10809
11044
  }
10810
11045
  .Layer__loader--as-badge {
10811
- padding: 0;
10812
- width: 21px;
10813
11046
  height: 21px;
10814
- background-color: var(--color-base-100);
11047
+ width: 21px;
11048
+ padding: 0;
10815
11049
  border-radius: 50%;
11050
+ background-color: var(--color-base-100);
10816
11051
  }
10817
11052
  .Layer__loader--as-badge.Layer__loader--info {
10818
11053
  background-color: var(--color-info-bg);
@@ -10831,24 +11066,24 @@ tbody .Layer__table__empty-row:first-child {
10831
11066
  color: var(--color-info-warning-fg);
10832
11067
  }
10833
11068
  .Layer__loader--with-bg {
10834
- background-color: var(--color-base-400);
10835
- color: var(--text-color-primary);
10836
11069
  padding: 0;
10837
11070
  border-radius: 50%;
11071
+ background-color: var(--color-base-400);
11072
+ color: var(--text-color-primary);
10838
11073
  }
10839
11074
  .Layer__skeleton-loader__row {
11075
+ height: 63px;
10840
11076
  padding: 0 var(--spacing-md);
10841
11077
  border-bottom: 1px solid var(--border-color);
10842
- height: 63px;
10843
11078
  }
10844
11079
  .Layer__skeleton-loader__row__group {
10845
11080
  display: flex;
10846
- align-items: center;
10847
11081
  gap: var(--spacing-sm);
11082
+ align-items: center;
10848
11083
  }
10849
11084
  .Layer__skeleton-loader {
10850
- width: 100%;
10851
11085
  height: 12px;
11086
+ width: 100%;
10852
11087
  border-radius: 4px;
10853
11088
  }
10854
11089
  @keyframes shine {
@@ -10857,27 +11092,27 @@ tbody .Layer__table__empty-row:first-child {
10857
11092
  }
10858
11093
  }
10859
11094
  .Layer__anim--skeleton-loading {
11095
+ border-radius: 4px;
10860
11096
  background: var(--color-base-100);
10861
11097
  background:
10862
11098
  linear-gradient(
10863
11099
  110deg,
10864
- var(--color-base-50) 0%,
10865
- var(--color-base-0) 28%,
10866
- var(--color-base-50) 50%,
10867
- var(--color-base-50) 100%);
10868
- border-radius: 4px;
11100
+ var(--color-base-100) 0%,
11101
+ var(--color-base-50) 28%,
11102
+ var(--color-base-100) 50%,
11103
+ var(--color-base-100) 100%);
10869
11104
  background-size: 200% 100%;
10870
11105
  animation: 1.5s shine linear infinite;
10871
11106
  }
10872
11107
  .Layer__syncing-component {
10873
11108
  display: flex;
10874
- align-items: center;
10875
11109
  gap: var(--spacing-md);
11110
+ align-items: center;
10876
11111
  padding: var(--spacing-md);
10877
11112
  }
10878
11113
  .Layer__syncing-component.Layer__syncing-component--with-border {
10879
- border-left: 1px solid var(--border-color);
10880
11114
  padding: 0 var(--spacing-md);
11115
+ border-left: 1px solid var(--border-color);
10881
11116
  margin-left: var(--spacing-md);
10882
11117
  }
10883
11118
  .Layer__syncing-component .Layer__syncing-component__content {
@@ -10886,18 +11121,18 @@ tbody .Layer__table__empty-row:first-child {
10886
11121
  gap: var(--spacing-4xs);
10887
11122
  }
10888
11123
  .Layer__syncing-component .Layer__syncing-component__content .Layer__syncing-component__title {
10889
- color: var(--text-color-primary);
10890
11124
  font-size: var(--text-sm);
10891
11125
  font-weight: 540;
11126
+ color: var(--text-color-primary);
10892
11127
  }
10893
11128
  .Layer__syncing-component .Layer__syncing-component__content .Layer__syncing-component__message {
10894
- color: var(--color-base-500);
10895
11129
  font-size: var(--text-sm);
10896
11130
  font-weight: 460;
11131
+ color: var(--color-base-500);
10897
11132
  }
10898
11133
  .Layer__syncing-component .Layer__icon-btn {
11134
+ box-shadow: 0 1px 2px 0 var(--base-transparent-6, rgba(17, 17, 17, 0.06)), 0 0 0 1px var(--base-300, #eaeaea);
10899
11135
  color: var(--color-base-1000);
10900
- box-shadow: 0px 1px 2px 0px var(--base-transparent-6, rgba(17, 17, 17, 0.06)), 0px 0px 0px 1px var(--base-300, #eaeaea);
10901
11136
  }
10902
11137
  .Layer__syncing-component .Layer__icon-btn svg {
10903
11138
  transition: transform 0.3s ease;
@@ -10906,9 +11141,9 @@ tbody .Layer__table__empty-row:first-child {
10906
11141
  transform: rotate(180deg);
10907
11142
  }
10908
11143
  .Layer__bank-transactions__header--mobile .Layer__syncing-component.Layer__syncing-component--with-border {
10909
- border-width: 0;
10910
11144
  padding: 0;
10911
11145
  padding-left: var(--spacing-sm);
11146
+ border-width: 0;
10912
11147
  margin-left: 0;
10913
11148
  }
10914
11149
  .Layer__pagination-container {