@layerfi/components 0.1.108-alpha → 0.1.108

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
@@ -4513,6 +4513,9 @@ tbody .Layer__table__empty-row:first-child {
4513
4513
  }
4514
4514
  .Layer__UI__Button[data-variant=text] {
4515
4515
  --size: inherit;
4516
+ display: inline-block;
4517
+ overflow: hidden;
4518
+ text-overflow: ellipsis;
4516
4519
  padding-inline: 0;
4517
4520
  border: none;
4518
4521
  background-color: transparent;
@@ -5029,6 +5032,9 @@ tbody .Layer__table__empty-row:first-child {
5029
5032
  .Layer__Modal[data-size=lg] {
5030
5033
  inline-size: min(42rem, 90%);
5031
5034
  }
5035
+ .Layer__Modal[data-size=xl] {
5036
+ inline-size: min(70rem, 100%);
5037
+ }
5032
5038
  .Layer__Modal[data-variant=drawer] {
5033
5039
  block-size: 100%;
5034
5040
  }
@@ -5472,6 +5478,9 @@ tbody .Layer__table__empty-row:first-child {
5472
5478
  .Layer__UI__Table-TableHeader:not(:last-child) .Layer__UI__Table-Column {
5473
5479
  border-bottom: 1px solid var(--color-base-300);
5474
5480
  }
5481
+ .Layer__UI__Table-TableHeader > tr {
5482
+ height: inherit;
5483
+ }
5475
5484
  .Layer__UI__Table-Row {
5476
5485
  height: 3.25rem;
5477
5486
  }
@@ -5480,6 +5489,9 @@ tbody .Layer__table__empty-row:first-child {
5480
5489
  }
5481
5490
  .Layer__UI__Table-Column {
5482
5491
  box-sizing: border-box;
5492
+ display: flex;
5493
+ align-items: center;
5494
+ height: inherit;
5483
5495
  padding: var(--spacing-xs) var(--spacing-sm);
5484
5496
  font-size: var(--text-sm);
5485
5497
  font-weight: var(--font-weight-normal);
@@ -5501,6 +5513,10 @@ tbody .Layer__table__empty-row:first-child {
5501
5513
  text-align: right;
5502
5514
  }
5503
5515
  .Layer__UI__Table-Cell {
5516
+ box-sizing: border-box;
5517
+ display: flex;
5518
+ align-items: center;
5519
+ height: inherit;
5504
5520
  padding: var(--spacing-xs) var(--spacing-sm);
5505
5521
  font-size: var(--text-md);
5506
5522
  font-weight: var(--font-weight-normal);
@@ -5564,6 +5580,11 @@ tbody .Layer__table__empty-row:first-child {
5564
5580
  .Layer__UI__Heading[data-variant=subtle] {
5565
5581
  color: var(--fg-subtle);
5566
5582
  }
5583
+ .Layer__UI__Heading[data-ellipsis] {
5584
+ white-space: nowrap;
5585
+ overflow: hidden;
5586
+ text-overflow: ellipsis;
5587
+ }
5567
5588
  .Layer__UI__Heading[data-pbe="3xs"] {
5568
5589
  padding-block-end: var(--spacing-3xs);
5569
5590
  }
@@ -6803,41 +6824,33 @@ tbody .Layer__table__empty-row:first-child {
6803
6824
  }
6804
6825
  .Layer__UI__Table__InvoiceTable {
6805
6826
  table-layout: fixed;
6827
+ width: 100%;
6806
6828
  }
6807
- .Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--SentAt {
6808
- width: 15%;
6809
- min-width: 8rem;
6810
- }
6811
- .Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--InvoiceNo {
6812
- width: 10%;
6813
- min-width: 6.75rem;
6814
- }
6815
- .Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Customer {
6816
- width: 35%;
6817
- min-width: 11.75rem;
6818
- }
6819
- .Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Total {
6820
- width: 15%;
6821
- min-width: 7.75rem;
6822
- border-right: 1px solid var(--color-base-300);
6823
- text-align: end;
6824
- }
6825
- .Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Status {
6826
- width: 25%;
6827
- min-width: 10rem;
6829
+ .Layer__UI__Table__InvoiceTable .Layer__UI__Table-Row,
6830
+ .Layer__UI__Table__InvoiceTable .Layer__UI__Table-TableHeader > tr {
6831
+ display: grid;
6832
+ grid-template-columns: minmax(8rem, 10%) minmax(6.75rem, 15%) minmax(11.75rem, 35%) minmax(7.75rem, 15%) minmax(10rem, 25%) 3.75rem;
6828
6833
  }
6834
+ .Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Total,
6829
6835
  .Layer__UI__Table__InvoiceTable .Layer__UI__Table-Cell__InvoiceTable--Total {
6836
+ justify-content: flex-end;
6830
6837
  border-right: 1px solid var(--color-base-300);
6831
6838
  }
6832
6839
  .Layer__InvoiceTable__StatusFilter {
6833
6840
  width: 11rem;
6834
6841
  }
6842
+ .Layer__InvoiceDetail {
6843
+ width: clamp(56rem, 100%, 1406px);
6844
+ }
6835
6845
  .Layer__InvoiceDetail__SubHeader {
6836
6846
  align-items: center;
6837
6847
  height: 5.5rem;
6838
6848
  padding-left: 2.25rem;
6839
6849
  border-bottom: 1px solid var(--border-color);
6840
6850
  }
6851
+ .Layer__InvoiceDetail__Heading {
6852
+ max-inline-size: 30rem;
6853
+ }
6841
6854
  .Layer__InvoiceForm {
6842
6855
  min-width: 54rem;
6843
6856
  }
@@ -6993,6 +7006,13 @@ tbody .Layer__table__empty-row:first-child {
6993
7006
  .Layer__PaginatedDataTable__Pagination {
6994
7007
  border-top: 1px solid var(--border-color);
6995
7008
  }
7009
+ .Layer__DataTable__EmptyState__Row {
7010
+ height: fit-content;
7011
+ }
7012
+ .Layer__DataTable__EmptyState__Cell {
7013
+ grid-column: 1/-1;
7014
+ justify-content: center;
7015
+ }
6996
7016
  .Layer__UI__VirtualizedTable__container {
6997
7017
  position: relative;
6998
7018
  overflow: auto;
@@ -7011,12 +7031,6 @@ tbody .Layer__table__empty-row:first-child {
7011
7031
  top: 0;
7012
7032
  display: grid;
7013
7033
  }
7014
- .Layer__UI__VirtualizedTable__cell,
7015
- .Layer__UI__VirtualizedTable__header-cell {
7016
- display: flex;
7017
- flex-wrap: wrap;
7018
- align-content: center;
7019
- }
7020
7034
  .Layer__UI__VirtualizedTable__header-cell {
7021
7035
  background-color: var(--color-base-0);
7022
7036
  }
@@ -7162,14 +7176,11 @@ tbody .Layer__table__empty-row:first-child {
7162
7176
  place-items: center;
7163
7177
  min-block-size: 20rem;
7164
7178
  }
7165
- .Layer__tasks-component {
7179
+ .Layer__tasks {
7166
7180
  display: flex;
7167
7181
  flex-direction: column;
7168
- overflow-y: auto;
7169
- height: 100%;
7170
- border-radius: 8px;
7171
- box-shadow: 0 0 0 1px var(--color-base-300);
7172
- background-color: var(--color-base-0);
7182
+ overflow: hidden auto;
7183
+ max-height: calc(100vh - 2 * var(--spacing-lg));
7173
7184
  }
7174
7185
  .Layer__tasks-pending {
7175
7186
  box-sizing: border-box;
@@ -7226,17 +7237,12 @@ tbody .Layer__table__empty-row:first-child {
7226
7237
  container-type: inline-size;
7227
7238
  }
7228
7239
  .Layer__tasks__content {
7229
- max-height: 1000px;
7240
+ min-height: 0;
7230
7241
  opacity: 1;
7231
- transition: max-height 0.18s ease-out, opacity 0.2s ease-out;
7232
- }
7233
- .Layer__tasks__content.Layer__tasks__content--collapsed {
7234
- opacity: 0.3;
7235
- max-height: 0;
7242
+ transition: opacity 0.2s ease-out;
7236
7243
  }
7237
7244
  .Layer__tasks-list {
7238
- box-shadow: 0 0 0 1px var(--color-base-300);
7239
- background-color: var(--color-base-0);
7245
+ border-top: 1px solid var(--border-color);
7240
7246
  }
7241
7247
  .Layer__tasks-list .Layer__tasks-list-item-wrapper {
7242
7248
  padding: var(--spacing-2xs);
@@ -7324,7 +7330,6 @@ tbody .Layer__table__empty-row:first-child {
7324
7330
  }
7325
7331
  .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body.Layer__tasks-list-item__body--expanded {
7326
7332
  height: auto;
7327
- padding-bottom: var(--spacing-sm);
7328
7333
  opacity: 1;
7329
7334
  }
7330
7335
  .Layer__tasks-list .Layer__tasks-empty-state {
@@ -7342,6 +7347,7 @@ tbody .Layer__table__empty-row:first-child {
7342
7347
  gap: var(--spacing-xs);
7343
7348
  align-items: center;
7344
7349
  justify-content: flex-end;
7350
+ padding-bottom: var(--spacing-sm);
7345
7351
  }
7346
7352
  .Layer__tasks-icon {
7347
7353
  display: flex;
@@ -7492,6 +7498,7 @@ tbody .Layer__table__empty-row:first-child {
7492
7498
  grid-template-columns: repeat(3, 1fr);
7493
7499
  gap: var(--spacing-xs);
7494
7500
  padding: var(--spacing-md);
7501
+ padding-top: 10px;
7495
7502
  container-type: inline-size;
7496
7503
  }
7497
7504
  @container (min-width: 680px) {
@@ -7510,24 +7517,24 @@ tbody .Layer__table__empty-row:first-child {
7510
7517
  }
7511
7518
  }
7512
7519
  .Layer__tasks-month-selector__month {
7513
- min-height: 32px;
7514
- flex: 1;
7515
7520
  display: flex;
7521
+ flex: 1;
7516
7522
  align-items: center;
7517
7523
  justify-content: space-between;
7518
- cursor: pointer;
7519
- border-radius: var(--border-radius-xs);
7524
+ min-height: 32px;
7520
7525
  padding: 0 var(--spacing-sm);
7521
- background: var(--color-base-0);
7526
+ border-radius: var(--border-radius-xs);
7522
7527
  box-shadow: 0 1px 2px 0 var(--base-transparent-6), 0 0 0 1px var(--color-base-300);
7528
+ background: var(--color-base-0);
7529
+ cursor: pointer;
7523
7530
  container-type: inline-size;
7524
7531
  }
7525
7532
  .Layer__tasks-month-selector__month[data-active] {
7526
7533
  box-shadow: 0 0 0 1px var(--color-base-800), 0 0 0 3px var(--color-base-300);
7527
7534
  }
7528
7535
  .Layer__tasks-month-selector__month[data-disabled] {
7529
- color: var(--color-base-500);
7530
7536
  cursor: not-allowed;
7537
+ color: var(--color-base-500);
7531
7538
  }
7532
7539
  .Layer__tasks-month-selector__month:hover {
7533
7540
  box-shadow: 0 0 0 1px var(--color-base-500), 0 0 0 3px var(--color-base-300);
@@ -7854,7 +7861,7 @@ tbody .Layer__table__empty-row:first-child {
7854
7861
  margin-block-start: var(--spacing-5xl);
7855
7862
  }
7856
7863
  .Layer__ProfitAndLossDetailReport {
7857
- --pnl-detail-table-cols: minmax(7rem, 12%) minmax(7rem, 12%) minmax(10rem, 18%) minmax(12rem, 38%) minmax(7.5rem, 10%) minmax(7.5rem, 10%);
7864
+ --pnl-detail-table-cols: minmax(7.5rem, 8%) minmax(7rem, 18%) minmax(10rem, 18%) minmax(12rem, 36%) minmax(7.5rem, 10%) minmax(7.5rem, 10%);
7858
7865
  }
7859
7866
  .Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport {
7860
7867
  table-layout: fixed;
@@ -7889,6 +7896,42 @@ tbody .Layer__table__empty-row:first-child {
7889
7896
  grid-column: 5;
7890
7897
  justify-content: flex-end;
7891
7898
  }
7899
+ @container (width <= 840px) {
7900
+ .Layer__ProfitAndLossDetailReport {
7901
+ --pnl-detail-table-cols: minmax(4rem, 25%) minmax(8rem, 55%) minmax(4rem, 20%);
7902
+ }
7903
+ .Layer__ProfitAndLossDetailReport .Layer__UI__VirtualizedTable__row,
7904
+ .Layer__ProfitAndLossDetailReport .Layer__UI__VirtualizedTable__header > tr {
7905
+ grid-template-columns: var(--pnl-detail-table-cols);
7906
+ }
7907
+ .Layer__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Type,
7908
+ .Layer__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Account,
7909
+ .Layer__ProfitAndLossDetailReport .Layer__UI__Table-Column__ProfitAndLossDetailReport--Balance,
7910
+ .Layer__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Type,
7911
+ .Layer__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Account,
7912
+ .Layer__ProfitAndLossDetailReport .Layer__UI__Table-Cell__ProfitAndLossDetailReport--Balance {
7913
+ display: none;
7914
+ }
7915
+ .Layer__ProfitAndLossDetailReport .Layer__profit-and-loss-detail-report__total-row {
7916
+ grid-template-columns: var(--pnl-detail-table-cols);
7917
+ }
7918
+ .Layer__ProfitAndLossDetailReport .Layer__profit-and-loss-detail-report__total-label {
7919
+ grid-column: 1/3;
7920
+ }
7921
+ .Layer__ProfitAndLossDetailReport .Layer__profit-and-loss-detail-report__total-amount {
7922
+ grid-column: 3;
7923
+ }
7924
+ }
7925
+ .Layer__ProfitAndLossReport__Modal--drawer .Layer__ProfitAndLossDetailReport .Layer__UI__VirtualizedTable__container {
7926
+ max-height: calc(var(--visual-viewport-height) - (4.75rem + 42px));
7927
+ }
7928
+ .Layer__ProfitAndLossReport__Modal--mobile .Layer__BaseDetailView {
7929
+ display: flex;
7930
+ flex-direction: column;
7931
+ }
7932
+ .Layer__ProfitAndLossReport__Modal--mobile .Layer__ProfitAndLossDetailReport {
7933
+ min-height: 0;
7934
+ }
7892
7935
  .Layer__profit-and-loss-header__bookkeeping-status {
7893
7936
  position: absolute;
7894
7937
  bottom: -20px;
@@ -7938,53 +7981,38 @@ tbody .Layer__table__empty-row:first-child {
7938
7981
  background: var(--color-info-error-bg);
7939
7982
  }
7940
7983
  .Layer__tabs__container {
7941
- scrollbar-width: thin;
7942
- scrollbar-color: var(--color-base-200) var(--color-base-50);
7943
- max-width: 100%;
7944
7984
  overflow: auto hidden;
7945
- }
7946
- .Layer__tabs__container::-webkit-scrollbar {
7947
- width: 2px;
7948
- height: 2px;
7949
- }
7950
- .Layer__tabs__container::-webkit-scrollbar-track {
7951
- background: var(--color-base-50);
7952
- }
7953
- .Layer__tabs__container::-webkit-scrollbar-thumb {
7954
- background: var(--color-base-200);
7955
- border-radius: 2px;
7956
- }
7957
- .Layer__tabs__container::-webkit-scrollbar-thumb:hover {
7958
- background: var(--color-base-300);
7985
+ min-height: 50px;
7959
7986
  }
7960
7987
  .Layer__tabs {
7988
+ box-sizing: border-box;
7989
+ position: relative;
7961
7990
  display: flex;
7962
- width: 100%;
7991
+ gap: var(--spacing-xs);
7963
7992
  align-items: center;
7964
- box-sizing: border-box;
7965
- padding: 0 var(--spacing-sm);
7966
7993
  height: 42px;
7994
+ width: fit-content;
7995
+ min-width: 100%;
7996
+ padding: 0 var(--spacing-sm);
7997
+ border-bottom: 2px solid var(--color-base-100);
7967
7998
  cursor: pointer;
7968
- position: relative;
7999
+ user-select: none;
7969
8000
  isolation: isolate;
7970
- gap: var(--spacing-xs);
7971
8001
  -webkit-tap-highlight-color: transparent;
7972
8002
  -webkit-touch-callout: none;
7973
- user-select: none;
7974
- border-bottom: 2px solid var(--color-base-100);
7975
8003
  }
7976
8004
  .Layer__tabs .Layer__tabs-option-content {
7977
8005
  display: flex;
7978
- align-items: center;
7979
8006
  gap: var(--spacing-xs);
8007
+ align-items: center;
7980
8008
  }
7981
8009
  .Layer__tabs-option__icon {
7982
8010
  line-height: 11px;
7983
8011
  }
7984
8012
  .Layer__tabs-option {
7985
8013
  position: relative;
7986
- cursor: pointer;
7987
8014
  z-index: 2;
8015
+ cursor: pointer;
7988
8016
  }
7989
8017
  .Layer__tabs-option input {
7990
8018
  position: absolute;
@@ -7993,34 +8021,23 @@ tbody .Layer__table__empty-row:first-child {
7993
8021
  }
7994
8022
  .Layer__tabs-option input + span {
7995
8023
  box-sizing: border-box;
7996
- padding: var(--spacing-xs);
7997
- min-width: 40px;
8024
+ position: relative;
8025
+ justify-content: center;
7998
8026
  height: 36px;
7999
- color: var(--text-color-secondary);
8000
- font-family: var(--font-family);
8027
+ min-width: 40px;
8028
+ padding: var(--spacing-xs);
8029
+ border-bottom: 2px solid transparent;
8030
+ cursor: pointer;
8001
8031
  font-size: var(--btn-font-size);
8032
+ font-family: var(--font-family);
8002
8033
  font-weight: var(--font-weight-bold);
8034
+ color: var(--text-color-secondary);
8003
8035
  font-variation-settings: "wght" 460;
8004
- cursor: pointer;
8005
8036
  transition: color var(--transition-speed) ease-in-out, background-color 150ms ease-in-out;
8006
- justify-content: center;
8007
- border-bottom: 2px solid transparent;
8008
- position: relative;
8009
8037
  }
8010
8038
  .Layer__tabs-option input + span:hover {
8011
8039
  color: var(--text-color-primary);
8012
8040
  }
8013
- .Layer__tabs-option input + span::after {
8014
- content: "";
8015
- position: absolute;
8016
- bottom: -6px;
8017
- left: 0;
8018
- width: 100%;
8019
- height: 2px;
8020
- opacity: 0;
8021
- background-color: var(--color-base-300);
8022
- transition: opacity 120ms ease-out;
8023
- }
8024
8041
  .Layer__tabs-option input:checked + span {
8025
8042
  color: var(--text-color-primary);
8026
8043
  }
@@ -8028,29 +8045,22 @@ tbody .Layer__table__empty-row:first-child {
8028
8045
  cursor: not-allowed;
8029
8046
  color: var(--text-color-secondary);
8030
8047
  }
8031
- .Layer__tabs-option:hover input + span::after {
8032
- opacity: 1;
8033
- }
8034
8048
  .Layer__tabs-option:hover input:disabled + span,
8035
8049
  .Layer__tabs-option:hover input:checked + span {
8036
8050
  background-color: transparent;
8037
8051
  }
8038
- .Layer__tabs-option:hover input:disabled + span::after,
8039
- .Layer__tabs-option:hover input:checked + span::after {
8040
- display: none;
8041
- }
8042
8052
  .Layer__tabs.Layer__tabs--small .Layer__tabs-option input + span {
8043
8053
  height: 32px;
8044
8054
  border-radius: 6px;
8045
8055
  }
8046
8056
  .Layer__tabs__thumb {
8057
+ box-sizing: border-box;
8047
8058
  position: absolute;
8048
- width: 100px;
8049
- left: 0;
8050
- bottom: -2px;
8051
8059
  z-index: 3;
8052
- box-sizing: border-box;
8060
+ bottom: -2px;
8061
+ left: 0;
8053
8062
  height: 2px;
8063
+ width: 100px;
8054
8064
  border-radius: 2px;
8055
8065
  background: var(--color-base-900);
8056
8066
  }
@@ -9280,10 +9290,10 @@ tbody .Layer__table__empty-row:first-child {
9280
9290
  background: transparent;
9281
9291
  }
9282
9292
  .Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header > div {
9293
+ overflow: hidden;
9283
9294
  padding: var(--spacing-xs) var(--spacing-sm);
9284
9295
  font-size: var(--text-sm);
9285
9296
  color: var(--color-base-500);
9286
- overflow: hidden;
9287
9297
  text-overflow: ellipsis;
9288
9298
  white-space: nowrap;
9289
9299
  }
@@ -9292,9 +9302,6 @@ tbody .Layer__table__empty-row:first-child {
9292
9302
  width: 120px;
9293
9303
  padding: var(--spacing-xs) var(--spacing-sm);
9294
9304
  }
9295
- .Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__date .amount-next-to-date {
9296
- display: none;
9297
- }
9298
9305
  .Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__amount {
9299
9306
  width: 100px;
9300
9307
  padding: var(--spacing-xs) var(--spacing-sm);
@@ -9308,8 +9315,7 @@ tbody .Layer__table__empty-row:first-child {
9308
9315
  text-align: right;
9309
9316
  }
9310
9317
  .Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__status.no-match {
9311
- width: 0;
9312
- padding: 0;
9318
+ display: none;
9313
9319
  }
9314
9320
  .Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc {
9315
9321
  flex: 1;
@@ -9318,9 +9324,6 @@ tbody .Layer__table__empty-row:first-child {
9318
9324
  white-space: nowrap;
9319
9325
  text-overflow: ellipsis;
9320
9326
  }
9321
- .Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc .match-badge {
9322
- display: none;
9323
- }
9324
9327
  .Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__desc .Layer__tooltip-trigger {
9325
9328
  display: flex;
9326
9329
  }
@@ -9342,12 +9345,12 @@ tbody .Layer__table__empty-row:first-child {
9342
9345
  .Layer__expanded-bank-transaction-row__match-row > div {
9343
9346
  display: flex;
9344
9347
  align-items: center;
9348
+ overflow: hidden;
9345
9349
  padding: var(--spacing-xs) var(--spacing-sm);
9346
9350
  border-top: 1px solid var(--color-base-300);
9347
9351
  border-bottom: 1px solid var(--color-base-300);
9348
9352
  font-size: var(--text-md);
9349
9353
  color: var(--color-base-500);
9350
- overflow: hidden;
9351
9354
  }
9352
9355
  .Layer__expanded-bank-transaction-row__match-row > div:first-child {
9353
9356
  border-top-left-radius: var(--border-radius-2xs);
@@ -9457,8 +9460,8 @@ tbody .Layer__table__empty-row:first-child {
9457
9460
  .Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__details {
9458
9461
  display: flex;
9459
9462
  justify-content: space-between;
9460
- color: var(--color-base-500);
9461
9463
  width: 100%;
9464
+ color: var(--color-base-500);
9462
9465
  }
9463
9466
  .Layer__bank-transaction-mobile-list-item__match-item .Layer__bank-transaction-mobile-list-item__match-item__col-status {
9464
9467
  display: flex;
@@ -9488,7 +9491,7 @@ tbody .Layer__table__empty-row:first-child {
9488
9491
  display: flex;
9489
9492
  gap: var(--spacing-sm);
9490
9493
  }
9491
- @container (max-width: 760px) {
9494
+ @container (max-width: 714px) {
9492
9495
  .Layer__expanded-bank-transaction-row__match-table .Layer__expanded-bank-transaction-row__match-table__header {
9493
9496
  display: none;
9494
9497
  }
@@ -9497,16 +9500,6 @@ tbody .Layer__table__empty-row:first-child {
9497
9500
  border-radius: var(--border-radius-2xs);
9498
9501
  border: 1px solid var(--color-base-300);
9499
9502
  }
9500
- .Layer__expanded-bank-transaction-row__match-row > div,
9501
- .Layer__expanded-bank-transaction-row__match-row > div:first-child,
9502
- .Layer__expanded-bank-transaction-row__match-row > div:nth-child(3):last-of-type,
9503
- .Layer__expanded-bank-transaction-row__match-row > div:nth-child(4),
9504
- .Layer__expanded-bank-transaction-row__match-row:hover > div,
9505
- .Layer__expanded-bank-transaction-row__match-row:hover > div:first-child,
9506
- .Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(3):last-of-type,
9507
- .Layer__expanded-bank-transaction-row__match-row:hover > div:nth-child(4) {
9508
- border-width: 0;
9509
- }
9510
9503
  .Layer__expanded-bank-transaction-row__match-row:hover {
9511
9504
  border: 1px solid var(--color-base-500);
9512
9505
  background: var(--color-base-0);
@@ -9517,26 +9510,14 @@ tbody .Layer__table__empty-row:first-child {
9517
9510
  background: var(--color-base-0);
9518
9511
  color: var(--color-base-700);
9519
9512
  }
9520
- .Layer__expanded-bank-transaction-row__match-row--selected > div {
9521
- border-width: 0;
9522
- }
9523
- .Layer__expanded-bank-transaction-row__match-row--selected .amount-next-to-date {
9524
- color: var(--color-base-800);
9525
- }
9526
9513
  .Layer__expanded-bank-transaction-row__match-row--selected:hover {
9527
9514
  border: 1px solid --var-color-base-800;
9528
9515
  }
9529
- .Layer__expanded-bank-transaction-row__match-row--selected:hover > div {
9530
- border-width: 0;
9531
- }
9532
9516
  .Layer__expanded-bank-transaction-row__match-table__date {
9533
9517
  display: flex;
9534
9518
  justify-content: space-between;
9535
9519
  width: 100% !important;
9536
9520
  }
9537
- .Layer__expanded-bank-transaction-row__match-table__date .amount-next-to-date {
9538
- display: block !important;
9539
- }
9540
9521
  .Layer__expanded-bank-transaction-row__match-table__amount {
9541
9522
  display: none !important;
9542
9523
  }
@@ -9553,9 +9534,6 @@ tbody .Layer__table__empty-row:first-child {
9553
9534
  .Layer__expanded-bank-transaction-row__match-table__desc .match-badge {
9554
9535
  display: block !important;
9555
9536
  }
9556
- .Layer__expanded-bank-transaction-row__match-table__status {
9557
- display: none !important;
9558
- }
9559
9537
  }
9560
9538
  @container (max-width: 600px) {
9561
9539
  .Layer__expanded-bank-transaction-row__splits-inputs {