@jobber/components 6.38.0 → 6.38.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 +30 -20
  2. package/package.json +2 -2
package/dist/styles.css CHANGED
@@ -3718,29 +3718,40 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
3718
3718
  }
3719
3719
 
3720
3720
  .-lyJkOGbceo- {
3721
- --glimmer-background: rgba(var(--color-black--rgb) 5%);
3721
+ --glimmer-background: var(--color-surface--reverse);
3722
+ --glimmer-background-opacity: 7.5%;
3723
+ --glimmer-shine-opacity: 75%;
3722
3724
  --glimmer-shine: rgba(var(--color-white--rgb), var(--glimmer-shine-opacity));
3723
- --glimmer-shine-opacity: 80%;
3724
3725
  --duration-base: calc(var(--timing-slowest) * 4); /* 2s */
3725
3726
  --duration-fast: calc(var(--duration-base) / 2); /* 1s */
3726
-
3727
+ position: relative;
3727
3728
  width: 100%;
3728
3729
  height: 100%;
3729
3730
  border-radius: 8px;
3730
3731
  border-radius: var(--radius-base);
3731
- background-color: rgba(0 0 0 5%);
3732
- background-color: rgba(0, 0, 0 5%);
3732
+ overflow: hidden;
3733
+ }
3734
+
3735
+ .-lyJkOGbceo-::before,
3736
+ .-lyJkOGbceo-::after {
3737
+ content: "";
3738
+ position: absolute;
3739
+ top: 0;
3740
+ left: 0;
3741
+ width: 100%;
3742
+ height: 100%;
3743
+ }
3744
+
3745
+ .-lyJkOGbceo-::before {
3733
3746
  background-color: var(--glimmer-background);
3747
+ opacity: var(--glimmer-background-opacity);
3748
+ }
3749
+
3750
+ .-lyJkOGbceo-::after {
3734
3751
  background-image: linear-gradient(
3735
3752
  90deg,
3736
3753
  transparent 0px,
3737
- rgba(255, 255, 255, 0.8) 32px,
3738
- transparent 64px
3739
- );
3740
- background-image: linear-gradient(
3741
- 90deg,
3742
- transparent 0px,
3743
- rgba(255, 255, 255, 80%) 32px,
3754
+ var(--glimmer-shine) 32px,
3744
3755
  transparent 64px
3745
3756
  );
3746
3757
  background-image: linear-gradient(
@@ -3754,21 +3765,20 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
3754
3765
  background-size: var(--space-extravagant) 100%;
3755
3766
  -webkit-animation: -lyJkOGbceo- 2s infinite linear;
3756
3767
  animation: -lyJkOGbceo- 2s infinite linear;
3757
- }@supports (color: rgb(0 0 0 / 0.5)) and (color: hsl(0 0% 0% / 0.5)) {.-lyJkOGbceo- {
3758
- --glimmer-background: rgba(var(--color-black--rgb), 5%);
3759
- }
3760
3768
  }
3761
3769
 
3770
+ [data-theme="dark"] .-lyJkOGbceo-,
3762
3771
  .NH-8hViLjFA- {
3763
- --glimmer-background: rgba(var(--color-white--rgb) 10%);
3764
- --glimmer-shine-opacity: 25%;
3772
+ --glimmer-shine-opacity: 20%;
3765
3773
  }
3766
3774
 
3767
- @supports (color: rgb(0 0 0 / 0.5)) and (color: hsl(0 0% 0% / 0.5)) {
3768
-
3769
3775
  .NH-8hViLjFA- {
3770
- --glimmer-background: rgba(var(--color-white--rgb), 10%);
3776
+ --glimmer-background: var(--color-surface);
3771
3777
  }
3778
+
3779
+ [data-theme="dark"] .NH-8hViLjFA- {
3780
+ --glimmer-shine-opacity: 75%;
3781
+ --glimmer-background-opacity: 7.5%;
3772
3782
  }
3773
3783
 
3774
3784
  @-webkit-keyframes -lyJkOGbceo- {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobber/components",
3
- "version": "6.38.0",
3
+ "version": "6.38.1",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -534,5 +534,5 @@
534
534
  "> 1%",
535
535
  "IE 10"
536
536
  ],
537
- "gitHead": "7b92ab57d6362f47efa5972e3c2ef76dd9c1160a"
537
+ "gitHead": "cd210ddc581fd9756b50a3d73b5c4432e1585546"
538
538
  }