@layerfi/components 0.1.99-alpha-1 → 0.1.99-alpha.3

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
@@ -507,6 +507,9 @@
507
507
  .Layer__btn.Layer__btn--with-primary-icon .Layer__btn-text {
508
508
  padding: 0 var(--spacing-md);
509
509
  }
510
+ .Layer__btn.Layer__btn--with-primary-icon .Layer__btn-content {
511
+ column-gap: 0;
512
+ }
510
513
  .Layer__btn .Layer__btn-content {
511
514
  display: flex;
512
515
  justify-content: center;
@@ -516,9 +519,6 @@
516
519
  .Layer__btn .Layer__btn-content.Layer__justify--space-between {
517
520
  justify-content: space-between;
518
521
  }
519
- .Layer__btn.Layer__btn--with-primary-icon .Layer__btn-content {
520
- column-gap: 0;
521
- }
522
522
  .Layer__btn .Layer__btn-icon {
523
523
  color: var(--btn-color-icon);
524
524
  background: transparent;
@@ -537,11 +537,6 @@
537
537
  width: 32px;
538
538
  height: 32px;
539
539
  }
540
- .Layer__btn .Layer__btn-icon.Layer__btn-icon--primary {
541
- background: var(--btn-bg-color-icon);
542
- width: 32px;
543
- height: 32px;
544
- }
545
540
  .Layer__btn:hover {
546
541
  box-shadow: 0 0 0 1px var(--color-base-300), 0 1px 2px 0 var(--base-transparent-6);
547
542
  }
@@ -602,6 +597,9 @@
602
597
  .Layer__btn--primary.Layer__btn--active:not([disabled]) .Layer__btn-icon .Layer__btn-icon--on-inactive {
603
598
  display: none;
604
599
  }
600
+ .Layer__btn--primary > .Layer__btn-content > .Layer__btn-text {
601
+ color: var(--btn-color-primary);
602
+ }
605
603
  .Layer__btn--primary:not(.Layer__btn--with-primary-icon) .Layer__btn-icon {
606
604
  color: var(--btn-color-primary);
607
605
  }
@@ -685,14 +683,6 @@
685
683
  .Layer__icon-btn.Layer__icon-btn--active:hover {
686
684
  background-color: var(--color-base-300);
687
685
  }
688
- .Layer__icon-btn.Layer__icon-btn--border {
689
- box-shadow:
690
- 0 4px 5px 0 var(--base-transparent-1),
691
- 0 3px 4px 0 var(--base-transparent-2),
692
- 0 2px 3px 0 var(--base-transparent-4),
693
- 0 1px 1px 0 var(--base-transparent-4),
694
- 0 0 0 1px var(--color-base-300);
695
- }
696
686
  .Layer__text-btn {
697
687
  outline: none;
698
688
  box-shadow: none;
@@ -718,10 +708,6 @@
718
708
  }
719
709
  .Layer__retry-btn.Layer__btn--processing .Layer__btn-icon {
720
710
  animation: rotating-ccw 2s linear infinite;
721
- animation: rotating-ccw 2s linear infinite;
722
- animation: rotating-ccw 2s linear infinite;
723
- animation: rotating-ccw 2s linear infinite;
724
- animation: rotating-ccw 2s linear infinite;
725
711
  }
726
712
  .Layer__unsaved-info {
727
713
  color: var(--color-danger);
@@ -753,7 +739,7 @@
753
739
  text-decoration: none;
754
740
  }
755
741
  .Layer__switch__container .Layer__switch__button:focus,
756
- .Layer__switch__container .Layer__switch__button :active {
742
+ .Layer__switch__container .Layer__switch__button:active {
757
743
  box-shadow: 0 0 0 1px var(--color-base-0), 0 0 0 3px var(--color-base-0);
758
744
  outline: var(--color-base-0);
759
745
  }
@@ -3208,16 +3194,16 @@
3208
3194
  flex-direction: column;
3209
3195
  }
3210
3196
  .Layer__input-group.Layer__input-group--inline {
3197
+ flex: 1;
3211
3198
  flex-direction: row;
3199
+ gap: var(--spacing-sm);
3212
3200
  align-items: center;
3213
3201
  width: 100%;
3214
- flex: 1;
3215
- gap: var(--spacing-sm);
3216
3202
  }
3217
3203
  .Layer__input-group.Layer__input-group--inline label {
3218
- width: 33%;
3219
- flex: 1 1 auto;
3220
3204
  display: flex;
3205
+ flex: 1 1 auto;
3206
+ width: 33%;
3221
3207
  }
3222
3208
  .Layer__input-group.Layer__input-group--inline input {
3223
3209
  flex: 3 3 auto;
@@ -3237,19 +3223,20 @@
3237
3223
  text-align: right;
3238
3224
  }
3239
3225
  .Layer__textarea {
3240
- width: 100%;
3241
- resize: none;
3242
3226
  box-sizing: border-box;
3243
- box-shadow: 0 0 0 1px var(--input-border-color), 0 0 0 2px rgba(0, 0, 0, 0);
3244
- border: 1px solid var(--border-color);
3227
+ width: 100%;
3228
+ min-height: 100px;
3229
+ padding: var(--spacing-xs);
3245
3230
  border-radius: var(--input-border-radius);
3231
+ border: 1px solid var(--border-color);
3246
3232
  border-width: 0;
3247
- min-height: 100px;
3233
+ box-shadow: 0 0 0 1px var(--input-border-color), 0 0 0 2px rgba(0, 0, 0, 0);
3248
3234
  margin: 1px;
3249
- padding: var(--spacing-xs);
3250
- font-family: var(--font-family);
3235
+ background-color: var(--color-base-0);
3251
3236
  font-size: var(--input-font-size);
3252
3237
  line-height: 140%;
3238
+ font-family: var(--font-family);
3239
+ resize: none;
3253
3240
  }
3254
3241
  .Layer__textarea.Layer__textarea--error {
3255
3242
  box-shadow: 0 0 0 1px var(--color-base-300), 0 0 0 2px var(--color-danger);
@@ -3265,17 +3252,17 @@
3265
3252
  outline: none;
3266
3253
  }
3267
3254
  .Layer__input {
3268
- padding: 8px;
3269
3255
  box-sizing: border-box;
3270
3256
  position: relative;
3271
- border: 1px solid var(--border-color);
3257
+ padding: 8px;
3272
3258
  border-radius: var(--input-border-radius);
3259
+ border: 1px solid var(--border-color);
3273
3260
  border-width: 0;
3274
3261
  box-shadow: 0 0 0 1px var(--input-border-color), 0 0 0 2px rgba(0, 0, 0, 0);
3275
3262
  margin: 1px;
3276
- font-family: var(--font-family);
3277
3263
  font-size: var(--input-font-size);
3278
3264
  line-height: 140%;
3265
+ font-family: var(--font-family);
3279
3266
  }
3280
3267
  .Layer__input.Layer__input--error {
3281
3268
  box-shadow: 0 0 0 1px var(--color-base-300), 0 0 0 2px var(--color-danger);
@@ -3294,36 +3281,36 @@
3294
3281
  padding-left: 60px;
3295
3282
  }
3296
3283
  .Layer__input-left-text {
3284
+ box-sizing: border-box;
3297
3285
  position: absolute;
3286
+ top: 0;
3287
+ left: 0;
3298
3288
  display: flex;
3299
3289
  align-items: center;
3300
3290
  height: 100%;
3301
- left: 0;
3302
- top: 0;
3303
3291
  padding: var(--spacing-xs);
3304
3292
  padding-right: var(--spacing-sm);
3305
- box-sizing: border-box;
3306
3293
  border-right: 1px solid var(--input-border-color);
3307
- color: var(--color-base-700);
3308
3294
  font-size: var(--text-sm);
3295
+ color: var(--color-base-700);
3309
3296
  }
3310
3297
  .Layer__input-tooltip {
3311
- flex: 0;
3312
3298
  position: relative;
3299
+ flex: 0;
3313
3300
  }
3314
3301
  .Layer__toggle {
3302
+ box-sizing: border-box;
3303
+ position: relative;
3315
3304
  display: flex;
3316
- width: max-content;
3317
3305
  align-items: center;
3318
- box-sizing: border-box;
3319
- border-radius: 52px;
3320
- padding: 2px;
3306
+ width: max-content;
3321
3307
  height: 38px;
3322
- background: var(--color-base-100);
3308
+ padding: 2px;
3309
+ border-radius: 52px;
3323
3310
  box-shadow: 0 0 0 1px var(--color-base-300);
3324
3311
  margin: 1px;
3312
+ background: var(--color-base-100);
3325
3313
  cursor: pointer;
3326
- position: relative;
3327
3314
  isolation: isolate;
3328
3315
  -webkit-tap-highlight-color: transparent;
3329
3316
  -webkit-touch-callout: none;
@@ -3331,8 +3318,8 @@
3331
3318
  }
3332
3319
  .Layer__toggle .Layer__toggle-option-content {
3333
3320
  display: flex;
3334
- align-items: center;
3335
3321
  gap: var(--spacing-xs);
3322
+ align-items: center;
3336
3323
  }
3337
3324
  .Layer__toggle-option__icon {
3338
3325
  line-height: 11px;
@@ -3358,8 +3345,8 @@
3358
3345
  }
3359
3346
  .Layer__toggle-option {
3360
3347
  position: relative;
3361
- cursor: pointer;
3362
3348
  z-index: 2;
3349
+ cursor: pointer;
3363
3350
  }
3364
3351
  .Layer__toggle-option input {
3365
3352
  position: absolute;
@@ -3368,15 +3355,15 @@
3368
3355
  }
3369
3356
  .Layer__toggle-option input + span {
3370
3357
  box-sizing: border-box;
3371
- padding: 8px 16px;
3358
+ justify-content: center;
3372
3359
  height: 36px;
3360
+ padding: 8px 16px;
3373
3361
  border-radius: 52px;
3374
- color: var(--text-color-secondary);
3375
- font-family: var(--font-family);
3376
- font-size: var(--btn-font-size);
3377
3362
  cursor: pointer;
3363
+ font-size: var(--btn-font-size);
3364
+ font-family: var(--font-family);
3365
+ color: var(--text-color-secondary);
3378
3366
  transition: color var(--transition-speed) ease-in-out, background-color 150ms ease-in-out;
3379
- justify-content: center;
3380
3367
  }
3381
3368
  .Layer__toggle-option input + span:hover {
3382
3369
  color: var(--text-color-primary);
@@ -3400,22 +3387,22 @@
3400
3387
  border-radius: 6px;
3401
3388
  }
3402
3389
  .Layer__toggle__thumb {
3390
+ box-sizing: border-box;
3403
3391
  position: absolute;
3404
- width: 100px;
3405
- left: 0;
3406
- top: 1px;
3407
3392
  z-index: 1;
3408
- box-sizing: border-box;
3409
- padding: 8px 16px;
3393
+ top: 1px;
3394
+ left: 0;
3395
+ width: 100px;
3410
3396
  height: 36px;
3397
+ padding: 8px 16px;
3411
3398
  border-radius: 52px;
3412
- background: var(--color-white);
3413
3399
  box-shadow:
3414
3400
  0 0 0 1px var(--color-base-300),
3415
3401
  0 1px 1px 0 rgba(0, 0, 0, 0.04),
3416
3402
  0 2px 3px 0 rgba(0, 0, 0, 0.04),
3417
3403
  0 3px 4px 0 rgba(0, 0, 0, 0.02),
3418
3404
  0 4px 5px 0 rgba(0, 0, 0, 0.01);
3405
+ background: var(--color-white);
3419
3406
  }
3420
3407
  .Layer__toggle.Layer__toggle--small .Layer__toggle__thumb {
3421
3408
  height: 34px;
@@ -3425,9 +3412,11 @@
3425
3412
  transition: left 150ms ease, width 150ms ease;
3426
3413
  }
3427
3414
  .Layer__select {
3415
+ width: 100%;
3428
3416
  border-width: 0;
3429
- font-family: var(--font-family);
3430
3417
  font-size: var(--input-font-size);
3418
+ line-height: 140%;
3419
+ font-family: var(--font-family);
3431
3420
  font-weight: var(--font-weight-normal);
3432
3421
  font-variant-numeric: lining-nums proportional-nums;
3433
3422
  font-feature-settings:
@@ -3435,15 +3424,13 @@
3435
3424
  "cv05" on,
3436
3425
  "cv08" on,
3437
3426
  "ss03" on;
3438
- line-height: 140%;
3439
- width: 100%;
3440
3427
  }
3441
3428
  .Layer__select .Layer__select__control {
3442
- border-width: 0;
3429
+ min-height: 36px;
3443
3430
  border-radius: var(--input-border-radius);
3431
+ border-width: 0;
3444
3432
  box-shadow: 0 0 0 1px var(--color-base-300);
3445
3433
  margin: 1px;
3446
- min-height: 36px;
3447
3434
  }
3448
3435
  .Layer__select .Layer__select__control--is-focused {
3449
3436
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08), 0 0 0 1px var(--color-base-700);
@@ -3458,17 +3445,17 @@
3458
3445
  }
3459
3446
  .Layer__select .Layer__select__multi-value .Layer__select__multi-value__remove:hover {
3460
3447
  background: #f3b9b9;
3461
- color: var(--color-danger);
3462
3448
  cursor: pointer;
3449
+ color: var(--color-danger);
3463
3450
  }
3464
3451
  .Layer__select .Layer__select__multi-all-placeholder-badge {
3452
+ box-sizing: border-box;
3453
+ height: 24px;
3454
+ padding: var(--spacing-2xs) var(--spacing-sm);
3465
3455
  border-radius: var(--border-radius-3xs);
3466
3456
  background-color: var(--color-base-100);
3467
- color: var(--color-base-700);
3468
- padding: var(--spacing-2xs) var(--spacing-sm);
3469
3457
  line-height: 120%;
3470
- height: 24px;
3471
- box-sizing: border-box;
3458
+ color: var(--color-base-700);
3472
3459
  }
3473
3460
  .Layer__select .Layer__select__menu-notice {
3474
3461
  white-space: nowrap;
@@ -3481,9 +3468,11 @@
3481
3468
  padding: 7px;
3482
3469
  }
3483
3470
  .Layer__select .Layer__select__placeholder {
3484
- color: var(--color-base-500);
3471
+ overflow: hidden;
3472
+ max-width: 100%;
3485
3473
  font-family: var(--font-family);
3486
3474
  font-weight: var(--font-weight-normal);
3475
+ color: var(--color-base-500);
3487
3476
  font-variant-numeric: lining-nums proportional-nums;
3488
3477
  font-feature-settings:
3489
3478
  "cv10" on,
@@ -3492,32 +3481,30 @@
3492
3481
  "ss03" on;
3493
3482
  white-space: nowrap;
3494
3483
  text-overflow: ellipsis;
3495
- max-width: 100%;
3496
- overflow: hidden;
3497
3484
  }
3498
3485
  .Layer__select .Layer__select__option-label {
3499
3486
  display: flex;
3500
- align-items: center;
3501
3487
  gap: var(--spacing-2xs);
3488
+ align-items: center;
3502
3489
  }
3503
3490
  .Layer__select__menu-portal {
3504
- font-family: var(--font-family);
3505
3491
  font-size: var(--input-font-size);
3506
3492
  line-height: 140%;
3493
+ font-family: var(--font-family);
3507
3494
  }
3508
3495
  .Layer__select__menu-portal .Layer__select__group-heading {
3509
- color: var(--color-base-500);
3510
- font-size: var(--text-xs);
3511
3496
  padding: var(--spacing-xs) var(--spacing-md);
3497
+ font-size: var(--text-xs);
3498
+ color: var(--color-base-500);
3512
3499
  }
3513
3500
  .Layer__select__menu-portal .Layer__select__option {
3514
- font-family: var(--font-family);
3501
+ padding: var(--spacing-xs) var(--spacing-md);
3502
+ background: var(--color-white);
3503
+ cursor: pointer;
3515
3504
  font-size: var(--text-md);
3505
+ font-family: var(--font-family);
3516
3506
  color: var(--color-base-900);
3517
- cursor: pointer;
3518
3507
  transition: all 200ms ease-out;
3519
- background: var(--color-white);
3520
- padding: var(--spacing-xs) var(--spacing-md);
3521
3508
  }
3522
3509
  .Layer__select__menu-portal .Layer__select__option.Layer__select__option--is-selected {
3523
3510
  color: var(--text-color-primary);
@@ -3529,38 +3516,38 @@
3529
3516
  .Layer__select__menu-portal .Layer__select__option:active,
3530
3517
  .Layer__select__menu-portal .Layer__select__option:focus-visible,
3531
3518
  .Layer__select__menu-portal .Layer__select__option:focus-within {
3532
- color: var(--text-color-primary);
3533
3519
  background: var(--color-base-100);
3520
+ color: var(--text-color-primary);
3534
3521
  }
3535
3522
  .Layer__select__menu-portal .Layer__select__menu-notice {
3536
- font-family: var(--font-family);
3537
3523
  font-size: 12px;
3524
+ font-family: var(--font-family);
3538
3525
  color: #999;
3539
3526
  }
3540
3527
  .Layer__select__menu-portal .Layer__select__option-menu-content {
3541
3528
  display: flex;
3542
- justify-content: space-between;
3543
3529
  align-items: center;
3530
+ justify-content: space-between;
3544
3531
  }
3545
3532
  .Layer__select__menu-portal .Layer__select__option-menu-content .Layer__select__option-menu--name {
3546
3533
  display: flex;
3547
- align-items: center;
3548
3534
  gap: var(--spacing-2xs);
3535
+ align-items: center;
3549
3536
  }
3550
3537
  .Layer__select__menu-portal .Layer__select__option-menu-content-check {
3551
3538
  margin-top: 2px;
3552
3539
  }
3553
3540
  .Layer__select__menu-portal .Layer__select__group-heading--main {
3554
- font-size: var(--text-xs);
3555
- color: var(--color-base-700);
3556
3541
  padding: var(--spacing-xs) var(--spacing-md);
3557
3542
  border-bottom: 1px solid var(--color-base-200);
3558
- }
3559
- .Layer__select__menu-portal .Layer__select__option--separator {
3560
3543
  font-size: var(--text-xs);
3561
3544
  color: var(--color-base-700);
3545
+ }
3546
+ .Layer__select__menu-portal .Layer__select__option--separator {
3562
3547
  padding: var(--spacing-xs);
3563
3548
  padding-top: var(--spacing-md);
3549
+ font-size: var(--text-xs);
3550
+ color: var(--color-base-700);
3564
3551
  }
3565
3552
  .Layer__select__menu-portal .Layer__select__option--hidden {
3566
3553
  display: none;
@@ -3572,8 +3559,8 @@
3572
3559
  }
3573
3560
  .Layer__select__menu-portal .Layer__select__option-content__match .Layer__select__option-content__match__main-row {
3574
3561
  display: flex;
3575
- gap: var(--spacing-3xs);
3576
3562
  flex-direction: column;
3563
+ gap: var(--spacing-3xs);
3577
3564
  }
3578
3565
  .Layer__select__menu-portal .Layer__select__option-content__match .Layer__select__option-content__match__date {
3579
3566
  font-size: var(--text-sm);
@@ -3589,50 +3576,50 @@
3589
3576
  }
3590
3577
  .Layer__select__menu-portal .Layer__select__option-content__match .Layer__select__option-content__match__amount {
3591
3578
  font-size: var(--text-sm);
3592
- color: var(--color-base-900);
3593
3579
  font-weight: var(--font-weight-bold);
3580
+ color: var(--color-base-900);
3594
3581
  }
3595
3582
  .Layer__select__menu.Layer__select__menu--lg {
3596
3583
  width: calc(100% + 60px);
3597
3584
  margin-left: -30px;
3598
3585
  }
3599
3586
  .Layer__category-menu.Layer__category-menu--full {
3587
+ flex: 1;
3600
3588
  width: 100%;
3601
3589
  max-width: 100%;
3602
- flex: 1;
3603
3590
  }
3604
3591
  .Layer__category-menu__drawer-btn {
3592
+ box-sizing: border-box;
3593
+ position: relative;
3605
3594
  display: flex;
3606
3595
  flex: 1;
3596
+ align-items: center;
3607
3597
  width: 100%;
3608
- color: var(--color-base-500);
3598
+ min-height: 36px;
3609
3599
  padding: 8px;
3610
- box-sizing: border-box;
3611
- position: relative;
3612
- border: 1px solid var(--border-color);
3613
3600
  border-radius: var(--input-border-radius);
3601
+ border: 1px solid var(--border-color);
3614
3602
  border-width: 0;
3615
3603
  box-shadow: 0 0 0 1px var(--input-border-color), 0 0 0 2px rgba(0, 0, 0, 0);
3616
3604
  margin: 1px;
3617
- font-family: var(--font-family);
3618
- font-size: var(--input-font-size);
3619
- line-height: 140%;
3620
3605
  background-color: var(--color-base-0);
3621
- min-height: 36px;
3622
- align-items: center;
3623
3606
  cursor: pointer;
3607
+ font-size: var(--input-font-size);
3608
+ line-height: 140%;
3609
+ font-family: var(--font-family);
3610
+ color: var(--color-base-500);
3624
3611
  }
3625
3612
  .Layer__category-menu__drawer-btn:hover {
3626
- color: var(--text-color-primary);
3627
3613
  background-color: var(--color-base-50);
3614
+ color: var(--text-color-primary);
3628
3615
  }
3629
3616
  .Layer__category-menu__drawer-btn.Layer__category-menu__drawer-btn--selected {
3630
3617
  color: var(--text-color-primary);
3631
3618
  }
3632
3619
  .Layer__category-menu__drawer-btn .Layer__category-menu__drawer-btn__arrow {
3633
3620
  position: absolute;
3634
- right: 12px;
3635
3621
  top: 12px;
3622
+ right: 12px;
3636
3623
  }
3637
3624
  @media screen and (width <= 400px) {
3638
3625
  .Layer__select__menu-portal .Layer__select__option {
@@ -3640,29 +3627,29 @@
3640
3627
  }
3641
3628
  }
3642
3629
  .Layer__profit-and-loss-date-picker {
3643
- width: 210px;
3644
- font-size: 14px;
3645
- padding: 0.25rem;
3646
- border: 1px solid var(--input-border-color);
3647
- border-radius: var(--input-border-radius);
3648
- overflow: hidden;
3649
3630
  position: relative;
3631
+ z-index: 1;
3650
3632
  display: flex;
3651
3633
  align-items: center;
3652
3634
  justify-content: flex-end;
3653
- z-index: 1;
3635
+ overflow: hidden;
3636
+ width: 210px;
3637
+ padding: 0.25rem;
3638
+ border-radius: var(--input-border-radius);
3639
+ border: 1px solid var(--input-border-color);
3640
+ font-size: 14px;
3654
3641
  }
3655
3642
  .Layer__profit-and-loss-date-picker__button {
3656
- padding: 0.25rem;
3643
+ position: relative;
3644
+ z-index: 3;
3657
3645
  display: flex;
3658
- justify-content: center;
3659
3646
  align-items: center;
3660
- text-align: center;
3661
- background-color: var(--color-base-0);
3662
- border: 0;
3647
+ justify-content: center;
3648
+ padding: 0.25rem;
3663
3649
  border-radius: var(--input-border-radius);
3664
- z-index: 3;
3665
- position: relative;
3650
+ border: 0;
3651
+ background-color: var(--color-base-0);
3652
+ text-align: center;
3666
3653
  }
3667
3654
  .Layer__profit-and-loss-date-picker__button:active {
3668
3655
  background-color: var(--color-base-0);
@@ -3671,45 +3658,45 @@
3671
3658
  stroke: var(--text-color);
3672
3659
  }
3673
3660
  .Layer__profit-and-loss-date-picker__label {
3674
- flex: 1;
3675
- font-size: 14px;
3661
+ position: relative;
3676
3662
  display: flex;
3677
- justify-content: flex-start;
3663
+ flex: 1;
3678
3664
  align-items: center;
3679
- text-align: center;
3680
- padding: 0 var(--spacing-xs);
3681
- transition: opacity 0.7s ease-in-out, transform 0.4s ease-in-out;
3665
+ justify-content: flex-start;
3682
3666
  width: 33%;
3683
- position: relative;
3667
+ padding: 0 var(--spacing-xs);
3684
3668
  padding-left: 20px;
3669
+ font-size: 14px;
3670
+ text-align: center;
3671
+ transition: opacity 0.7s ease-in-out, transform 0.4s ease-in-out;
3685
3672
  }
3686
3673
  .Layer__profit-and-loss-date-picker__labels-container {
3674
+ position: absolute;
3687
3675
  display: flex;
3688
3676
  width: 660px;
3689
- position: absolute;
3690
3677
  }
3691
3678
  .Layer__profit-and-loss-date-picker__effect-blur {
3692
- width: 120px;
3693
- height: 100%;
3694
3679
  position: absolute;
3680
+ z-index: 2;
3695
3681
  right: -10px;
3696
3682
  bottom: 1px;
3683
+ width: 120px;
3684
+ height: 100%;
3697
3685
  background:
3698
3686
  linear-gradient(
3699
3687
  -90deg,
3700
3688
  #fff 50%,
3701
3689
  rgba(255, 255, 255, 0) 100%);
3702
- z-index: 2;
3703
3690
  }
3704
3691
  .Layer__input-with-badge {
3692
+ position: relative;
3705
3693
  display: flex;
3706
3694
  align-items: center;
3707
- position: relative;
3708
3695
  }
3709
3696
  .Layer__input-with-badge .Layer__badge {
3710
3697
  position: absolute;
3711
- right: 8px;
3712
3698
  z-index: 1;
3699
+ right: 8px;
3713
3700
  }
3714
3701
  .Layer__compare__options .Layer__select {
3715
3702
  width: max-content;
@@ -3727,8 +3714,8 @@
3727
3714
  .Layer__Portal .Layer__textarea,
3728
3715
  .Layer__Portal .Layer__select__control,
3729
3716
  .Layer__Portal .Layer__input {
3730
- font-size: 16px;
3731
3717
  min-height: 36px;
3718
+ font-size: 16px;
3732
3719
  }
3733
3720
  .Layer__view .Layer__bank-transaction-list-item__expanded-row .Layer__select .Layer__select__control,
3734
3721
  .Layer__component .Layer__bank-transaction-list-item__expanded-row .Layer__select .Layer__select__control,
@@ -10037,7 +10024,7 @@ tbody .Layer__table__empty-row:first-child {
10037
10024
  align-items: flex-start;
10038
10025
  padding: var(--spacing-xl);
10039
10026
  padding-bottom: var(--spacing-lg);
10040
- box-shadow: 0px -1px 0px 0px var(--color-base-300) inset;
10027
+ box-shadow: 0 -1px 0 0 var(--color-base-300) inset;
10041
10028
  }
10042
10029
  .Layer__profit-and-loss-detailed-charts__header--tablet button.Layer__btn.Layer__btn--icon-only,
10043
10030
  .Layer__profit-and-loss-detailed-charts__header button.Layer__btn.Layer__btn--icon-only {
@@ -10116,7 +10103,8 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
10116
10103
  font-size: 14px;
10117
10104
  }
10118
10105
  .Layer__profit-and-loss-detailed-charts .filters {
10119
- display: flex;
10106
+ display: grid;
10107
+ grid-template-columns: auto minmax(0, 1fr);
10120
10108
  align-items: center;
10121
10109
  margin: 0 var(--spacing-md);
10122
10110
  padding: var(--spacing-2xs) var(--spacing-xs);
@@ -10238,7 +10226,7 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
10238
10226
  background-image:
10239
10227
  repeating-linear-gradient(
10240
10228
  -45deg,
10241
- var(--color-base-200) 0px,
10229
+ var(--color-base-200) 0,
10242
10230
  var(--color-base-200) 2px,
10243
10231
  var(--color-base-500) 2px,
10244
10232
  var(--color-base-500) 3.5px,
@@ -10282,10 +10270,6 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
10282
10270
  .Layer__profit-and-loss-detailed-charts .header--tablet {
10283
10271
  display: none;
10284
10272
  }
10285
- .Layer__profit-and-loss-detailed-charts .chart-field {
10286
- display: flex;
10287
- flex-direction: column;
10288
- }
10289
10273
  @container (max-width: 1023px) {
10290
10274
  .Layer__profit-and-loss-detailed-charts {
10291
10275
  width: 100%;
@@ -10299,6 +10283,8 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
10299
10283
  justify-content: space-between;
10300
10284
  }
10301
10285
  .Layer__profit-and-loss-detailed-charts .Layer__profit-and-loss-detailed-charts__content .chart-field {
10286
+ display: flex;
10287
+ flex-direction: column;
10302
10288
  max-width: 300px;
10303
10289
  }
10304
10290
  .Layer__profit-and-loss-detailed-charts .Layer__profit-and-loss-detailed-charts__content .chart-container {