@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boyernick/standard-ui-react",
3
- "version": "0.4.2-canary.56",
3
+ "version": "0.4.2-canary.57",
4
4
  "description": "React components for StandardUI",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -351,7 +351,10 @@ export const VideoPlayer = ({
351
351
  <IconPlay
352
352
  size={ended ? 12 : 18}
353
353
  mode="raw"
354
- className={cn(ended ? "size-3" : "ml-0.5 size-4.5")}
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}