fix(ui): adjust CirclePlay icon spacing in player controls

Add marginLeft style property to eliminate unwanted spacing between
the text and icon in the "Play Full Session" button, improving the
visual alignment and consistency of the player controls.
This commit is contained in:
Shekar Siri 2025-03-25 18:36:27 +01:00
parent 9f681aca45
commit ce546bcfa3

View file

@ -48,7 +48,7 @@ function ClipPlayerControls({
<Timeline range={range} />
<Button size="small" type="primary" onClick={showFullSession}>
{t('Play Full Session')}
<CirclePlay size={16} />
<CirclePlay size={16} style={{ marginLeft: '0px'}} />
</Button>
</div>
);