@pitvox/partner-react 0.7.23 → 0.7.24

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 +8 -5
  2. package/package.json +1 -1
package/dist/styles.css CHANGED
@@ -2974,7 +2974,7 @@
2974
2974
 
2975
2975
  .pvx-promo-card-prize {
2976
2976
  font-size: 0.875rem;
2977
- color: var(--pvx-text-muted);
2977
+ color: var(--pvx-text);
2978
2978
  margin: 0;
2979
2979
  display: -webkit-box;
2980
2980
  -webkit-line-clamp: 2;
@@ -2988,7 +2988,7 @@
2988
2988
  gap: 0.25rem;
2989
2989
  margin-top: auto;
2990
2990
  font-size: 0.75rem;
2991
- color: var(--pvx-text-dimmed);
2991
+ color: var(--pvx-text-muted);
2992
2992
  }
2993
2993
 
2994
2994
  /* ─── Badges ─── */
@@ -3061,11 +3061,14 @@
3061
3061
  border-radius: var(--pvx-radius);
3062
3062
  overflow: hidden;
3063
3063
  background: #0d1117;
3064
+ /* Match the card's 16:9 crop so the framing is identical between the
3065
+ grid and the opened detail view. */
3066
+ aspect-ratio: 16 / 9;
3064
3067
  }
3065
3068
 
3066
3069
  .pvx-promo-detail-poster img {
3067
3070
  width: 100%;
3068
- max-height: 24rem;
3071
+ height: 100%;
3069
3072
  object-fit: cover;
3070
3073
  display: block;
3071
3074
  }
@@ -3085,7 +3088,7 @@
3085
3088
 
3086
3089
  .pvx-promo-detail-prize {
3087
3090
  font-size: 1rem;
3088
- color: var(--pvx-text-muted);
3091
+ color: var(--pvx-text);
3089
3092
  margin: 0;
3090
3093
  }
3091
3094
 
@@ -3094,7 +3097,7 @@
3094
3097
  gap: 1rem;
3095
3098
  flex-wrap: wrap;
3096
3099
  font-size: 0.8125rem;
3097
- color: var(--pvx-text-dimmed);
3100
+ color: var(--pvx-text-muted);
3098
3101
  }
3099
3102
 
3100
3103
  .pvx-promo-section-title {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pitvox/partner-react",
3
- "version": "0.7.23",
3
+ "version": "0.7.24",
4
4
  "description": "React hooks and styled components for PitVox partner websites — leaderboards, competitions, driver dashboards",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",