@boyernick/standard-ui-react 0.4.2-canary.56 → 0.4.2-canary.57
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/package.json +1 -1
- package/src/video-player.tsx +4 -1
package/package.json
CHANGED
package/src/video-player.tsx
CHANGED
|
@@ -351,7 +351,10 @@ export const VideoPlayer = ({
|
|
|
351
351
|
<IconPlay
|
|
352
352
|
size={ended ? 12 : 18}
|
|
353
353
|
mode="raw"
|
|
354
|
-
|
|
354
|
+
// No nudge: Central's play glyph is already optically centred in
|
|
355
|
+
// its 24-unit box (its mass sits at x 11.7), so a margin shifts
|
|
356
|
+
// it right a second time.
|
|
357
|
+
className={cn(ended ? "size-3" : "size-4.5")}
|
|
355
358
|
aria-hidden
|
|
356
359
|
/>
|
|
357
360
|
{ended ? <span className="text-xs-strong">Replay</span> : null}
|