@jobber/components 6.19.0 → 6.19.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.
Files changed (2) hide show
  1. package/dist/styles.css +21 -14
  2. package/package.json +2 -2
package/dist/styles.css CHANGED
@@ -7452,22 +7452,29 @@ html.atlantisLightBoxActive {
7452
7452
  gap: var(--space-small);
7453
7453
  -ms-flex-negative: 0;
7454
7454
  flex-shrink: 0;
7455
-
7456
- scrollbar-width: thin;
7457
- scrollbar-color: hsl(198, 35%, 21%) transparent;
7458
- scrollbar-color: var(--color-interactive--subtle) transparent;
7459
7455
  }
7460
- ._3TfQLQEE3GQ-::-webkit-scrollbar {
7461
- height: 8px;
7462
- }
7463
- ._3TfQLQEE3GQ-::-webkit-scrollbar-track {
7464
- background: transparent;
7456
+ @supports (scrollbar-color: #000 #000) {
7457
+ ._3TfQLQEE3GQ- {
7458
+ scrollbar-width: thin; /* Safari version 18.3: Bug causes this rule to undermine other scrollbar styling */
7459
+ scrollbar-color: hsl(198, 35%, 21%) transparent;
7460
+ scrollbar-color: var(--color-interactive--subtle) transparent;
7461
+ }
7465
7462
  }
7466
- ._3TfQLQEE3GQ-::-webkit-scrollbar-thumb {
7467
- border-radius: 4px;
7468
- border-radius: var(--radius-small);
7469
- background: hsl(198, 35%, 21%);
7470
- background: var(--color-interactive--subtle);
7463
+ @supports not (scrollbar-color: #000 #000) {
7464
+ ._3TfQLQEE3GQ-::-webkit-scrollbar {
7465
+ height: 8px;
7466
+ }
7467
+
7468
+ ._3TfQLQEE3GQ-::-webkit-scrollbar-track {
7469
+ background: transparent;
7470
+ }
7471
+
7472
+ ._3TfQLQEE3GQ-::-webkit-scrollbar-thumb {
7473
+ border-radius: 4px;
7474
+ border-radius: var(--radius-small);
7475
+ background: hsl(198, 35%, 21%);
7476
+ background: var(--color-interactive--subtle);
7477
+ }
7471
7478
  }
7472
7479
  .eBMzUOlcfQ4- {
7473
7480
  width: 100%;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobber/components",
3
- "version": "6.19.0",
3
+ "version": "6.19.1",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -489,5 +489,5 @@
489
489
  "> 1%",
490
490
  "IE 10"
491
491
  ],
492
- "gitHead": "1dc769a65be0ccc5a6e075a10db7761a83609c7f"
492
+ "gitHead": "8bdfcad7ad4f56fc40d669239db76f46243542d7"
493
493
  }